Skip to content

Commit

Permalink
Merge branch 'main' of github.com:hyperledger/besu into holesky-gas-l…
Browse files Browse the repository at this point in the history
…imit
  • Loading branch information
macfarla committed Jan 16, 2025
2 parents 2f6f6a9 + 479bec0 commit 96255e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public OperationResult execute(final MessageFrame frame, final EVM evm) {
}
}

boolean accountCreation = contract == null && !zeroValue;
boolean accountCreation = (contract == null || contract.isEmpty()) && !zeroValue;
long cost =
clampedAdd(
clampedAdd(
Expand Down

0 comments on commit 96255e5

Please sign in to comment.