File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import {
2323 encodeForSigningBatch as rbcEncodeForSigningBatch ,
2424} from 'ripple-binary-codec'
2525import { verify as verifyKeypairSignature } from 'ripple-keypairs'
26+ import { stringToHex , hexToString } from '@xrplf/isomorphic/utils'
2627
2728import type { APIVersion } from '../models'
2829import { LedgerEntry } from '../models/ledger'
@@ -60,7 +61,6 @@ import {
6061 decimalToQuality ,
6162 qualityToDecimal ,
6263} from './quality'
63- import { stringToHex , hexToString } from '@xrplf/isomorphic/utils'
6464
6565import signPaymentChannelClaim from './signPaymentChannelClaim'
6666import { convertHexToString , convertStringToHex } from './stringConversion'
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ describe('Connection', function () {
217217 const server = await createServer ( )
218218 const port = ( server . address ( ) as net . AddressInfo ) . port
219219 const options = {
220- agent : new HttpsProxyAgent < string > ( `ws://127.0.0.1:${ port } ` , {
220+ agent : new HttpsProxyAgent ( `ws://127.0.0.1:${ port } ` , {
221221 ca : [ 'path/to/pem' ] ,
222222 } ) ,
223223 }
You can’t perform that action at this time.
0 commit comments