Skip to content

Commit 607d414

Browse files
committed
fix: reorder imports per linter requirements (external before local)
1 parent aace7f1 commit 607d414

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/xrpl/src/utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {
2323
encodeForSigningBatch as rbcEncodeForSigningBatch,
2424
} from 'ripple-binary-codec'
2525
import { verify as verifyKeypairSignature } from 'ripple-keypairs'
26+
import { stringToHex, hexToString } from '@xrplf/isomorphic/utils'
2627

2728
import type { APIVersion } from '../models'
2829
import { 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

6565
import signPaymentChannelClaim from './signPaymentChannelClaim'
6666
import { convertHexToString, convertStringToHex } from './stringConversion'

packages/xrpl/test/connection.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)