Skip to content

Commit

Permalink
chore: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
perfogic committed May 3, 2024
1 parent 3388994 commit 0892dee
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions packages/ibc-routing/src/intepreters/handlers/timeout.handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,11 @@ export const handleOnRequestBatchTimeout = async (ctx, event) => {
value: `${GravityAddress[evmChainPrefix]}`
}
];
console.log("handleOnRequestBatchTimeout", [
{
key: `batched_tx_ids.batched_tx_id`,
value: `${ctx.oraiBridgePendingTxId}`
},
{
key: `${outgoingBatchEventType}.bridge_contract`,
value: `${GravityAddress[evmChainPrefix]}`
}
]);
const query = buildQuery({
tags: queryTags
});
const stargateClient = await StargateClient.connect(config.ORAIBRIDGE_RPC_URL);
const txs = await stargateClient.searchTx(query);
console.log(config.ORAIBRIDGE_RPC_URL);
console.log("RequestBatchTimeout Txs:", txs);
if (txs.length == 0) {
throw generateError(evmChainPrefix + "- orai bridge data on onRequestBatchTimeout");
}
Expand Down

0 comments on commit 0892dee

Please sign in to comment.