Skip to content

Commit

Permalink
Update gas values in DSL files
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoreliovlabs committed Nov 27, 2024
1 parent 5458b42 commit 10b351a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private boolean init() {
}

long txGasLimit = GasCost.toGas(tx.getGasLimit());
long gasLimit = activations.isActive(RSKIP144)? sublistGasLimit : GasCost.toGas(executionBlock.getGasLimit());
long gasLimit = activations.isActive(RSKIP144) ? sublistGasLimit : GasCost.toGas(executionBlock.getGasLimit());

if (!gasIsValid(txGasLimit, gasLimit)) {
return false;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ transaction_build txCreateContractFactory

block_build b01
parent g00
gasLimit 6500000
gasLimit 650000000
transactions txCreateContractFactory
build

Expand Down

0 comments on commit 10b351a

Please sign in to comment.