Skip to content

Commit

Permalink
chore(bridge-ui): fix typo in BridgeForm.svelte (#14470)
Browse files Browse the repository at this point in the history
Co-authored-by: David <david@taiko.xyz>
  • Loading branch information
eltociear and davidtaikocha committed Aug 15, 2023
1 parent 477ca9b commit 7bca3d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -499,10 +499,10 @@
const requiredGas = gasEstimate.mul(feeData.gasPrice);
const userBalance = await $signer.getBalance('latest');
// Let's start with substracting the estimated required gas to bridge
// Let's start with subtracting the estimated required gas to bridge
let balanceAvailableForTx = userBalance.sub(requiredGas);
// Following we substract the currently selected processing fee
// Following we subtract the currently selected processing fee
const processingFee = getProcessingFee();
if (processingFee) {
balanceAvailableForTx = balanceAvailableForTx.sub(processingFee);
Expand Down

0 comments on commit 7bca3d0

Please sign in to comment.