Skip to content

Commit

Permalink
change evm wait to 1 confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
jvonasek committed Dec 10, 2024
1 parent e4762a0 commit f2118c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sections/transaction/ReviewTransaction.utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const useSendEvmTransactionMutation = (
setTxState("Broadcast")
setTxHash(evmTx?.hash ?? "")
setTxData(evmTx?.data)
const receipt = await evmTx.wait()
const receipt = await evmTx.wait(1)
setTxState("InBlock")

return resolve(evmTxReceiptToSubmittableResult(receipt))
Expand Down

0 comments on commit f2118c4

Please sign in to comment.