File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2329,7 +2329,7 @@ export const TESTNET_TOKENS: TokensConfig = {
2329
2329
} ,
2330
2330
ntt : {
2331
2331
nttManager : 'nTTh3bZ5Aer6xboWZe39RDEft4MeVxSQ8D1EYAVLZw9' ,
2332
- // The wormhole transceiver is baked into the Solana ntt contract.
2332
+ // The wormhole transceiver is baked into the Solana NTT contract.
2333
2333
// If the transceiver is split into a separate contract, this address
2334
2334
// and route code should be updated to support the new structure.
2335
2335
wormholeTransceiver : 'nTTh3bZ5Aer6xboWZe39RDEft4MeVxSQ8D1EYAVLZw9' ,
Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ const useCheckInboundQueuedTransfer = (): void => {
35
35
return ;
36
36
}
37
37
const { toChain, recipientNttManager, messageDigest } = signedMessage ;
38
- const ntt = RouteOperator . getRoute ( route ) as NttBase ;
38
+ const nttRoute = RouteOperator . getRoute ( route ) as NttBase ;
39
39
let active = true ;
40
40
const fetchData = async ( ) => {
41
41
// We continue polling for the inbound queued transfer even after fetching the data once,
42
42
// because the transfer could be released by anyone.
43
43
while ( active ) {
44
44
try {
45
- const queuedTransfer = await ntt . getInboundQueuedTransfer (
45
+ const queuedTransfer = await nttRoute . getInboundQueuedTransfer (
46
46
toChain ,
47
47
recipientNttManager ,
48
48
messageDigest ,
You can’t perform that action at this time.
0 commit comments