Skip to content

Commit 1660261

Browse files
committed
spotless
Signed-off-by: garyschulte <garyschulte@gmail.com>
1 parent 0d243a2 commit 1660261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evm/src/main/java/org/hyperledger/besu/evm/precompile/AltBN128MulPrecompiledContract.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public long gasRequirement(final Bytes input) {
8080
public PrecompileContractResult computePrecompile(
8181
final Bytes input, @Nonnull final MessageFrame messageFrame) {
8282

83-
if (input.size() >= 64 && input.slice(0,64).equals(POINT_AT_INFINITY)) {
83+
if (input.size() >= 64 && input.slice(0, 64).equals(POINT_AT_INFINITY)) {
8484
return new PrecompileContractResult(
8585
POINT_AT_INFINITY, false, MessageFrame.State.COMPLETED_SUCCESS, Optional.empty());
8686
}

0 commit comments

Comments
 (0)