Skip to content

Commit

Permalink
correct gt operator
Browse files Browse the repository at this point in the history
  • Loading branch information
jankjr committed Oct 20, 2023
1 parent 4ce197e commit c2d261a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/issuance/components/zap/state/ui-atoms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ const signAndSendTx: ZapperAction = async (

limit = limit + limit / 10n

limit = tx.gasEstimate < limit ? tx.gasEstimate : limit
limit = tx.gasEstimate > limit ? tx.gasEstimate : limit

const resp = await signer.sendTransaction({
...tx.tx,
Expand Down

0 comments on commit c2d261a

Please sign in to comment.