Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
Signed-off-by: vaidikcode <[email protected]>
  • Loading branch information
vaidikcode committed Dec 11, 2024
1 parent de4ee35 commit 040857a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void testGasLimitLogic() {
assertThat(isTransactionPermitted).isTrue();
}

private boolean checkTransactionGasLimit(long gasLimit) {
private boolean checkTransactionGasLimit(final long gasLimit) {
if (gasLimit > GAS_LIMIT_THRESHOLD) {
return true;
} else {
Expand Down

0 comments on commit 040857a

Please sign in to comment.