Skip to content

Commit

Permalink
Merge branch 'hyperledger:main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
cdivitotawela authored Sep 26, 2024
2 parents d1d8985 + bef897a commit e359742
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ public Optional<TransactionSimulatorResult> processWithWorldUpdater(
: blockHeaderToProcess.getGasLimit();
if (rpcGasCap > 0) {
gasLimit = rpcGasCap;
LOG.info("Capping gasLimit to " + rpcGasCap);
LOG.trace(
"Gas limit capped at {} for transaction simulation due to provided RPC gas cap.",
rpcGasCap);
}
final Wei value = callParams.getValue() != null ? callParams.getValue() : Wei.ZERO;
final Bytes payload = callParams.getPayload() != null ? callParams.getPayload() : Bytes.EMPTY;
Expand Down

0 comments on commit e359742

Please sign in to comment.