Skip to content

Commit

Permalink
remove spammy console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kev1n-peters committed Jan 9, 2025
1 parent 641242c commit b00425a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion connect/src/routes/tokenBridge/automatic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ export class AutomaticTokenBridgeRoute<N extends Network>

return [expectedDestinationToken];
} catch (e) {
console.error(`Failed to get destination token: ${e}`);
return [];
}
}
Expand Down
3 changes: 1 addition & 2 deletions connect/src/routes/tokenBridge/manual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export class TokenBridgeRoute<N extends Network>
try {
return [await TokenTransfer.lookupDestinationToken(fromChain, toChain, sourceToken)];
} catch (e) {
console.error(`Failed to get destination token: ${e}`);
return [];
}
}
Expand Down Expand Up @@ -165,7 +164,7 @@ export class TokenBridgeRoute<N extends Network>
destinationTxs: dstTxIds,
};
}

async resume(txid: TransactionId): Promise<R> {
const xfer = await TokenTransfer.from(this.wh, txid, 10 * 1000);
return TokenTransfer.getReceipt(xfer);
Expand Down

0 comments on commit b00425a

Please sign in to comment.