Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkNerdi committed May 17, 2024
1 parent faaa5bb commit d2a5359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/src/lib/core/layer-2/utils/addGasBuffer.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const GAS_LIMIT_MULTIPLIER = BigInt(110)

export function addGasBuffer(estimatedGas: bigint): bigint {
return estimatedGas * GAS_LIMIT_MULTIPLIER / BigInt(100)
return (estimatedGas * GAS_LIMIT_MULTIPLIER) / BigInt(100)
}

0 comments on commit d2a5359

Please sign in to comment.