Skip to content

Commit

Permalink
add space around operator
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Feb 20, 2024
1 parent fcc1021 commit b3ce9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ export class TransactionComputer {
return feeForMove;
}

const diff = transaction.gasLimit- moveBalanceGas;
const diff = transaction.gasLimit - moveBalanceGas;
const modifiedGasPrice = BigInt(new BigNumber(gasPrice.toString()).multipliedBy(new BigNumber(networkConfig.GasPriceModifier)).toFixed(0));
const processingFee = diff * modifiedGasPrice;

Expand Down

0 comments on commit b3ce9ae

Please sign in to comment.