Skip to content

Commit 67dbe80

Browse files
authored
ephemery to 60M gas limit (#8622)
* ephemery to 60M gas limit * removed stray semicolon Signed-off-by: Sally MacFarlane <[email protected]> --------- Signed-off-by: Sally MacFarlane <[email protected]>
1 parent c2a4462 commit 67dbe80

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- `--Xplugin-rocksdb-blockchain-blob-garbage-collection-enabled` Adds ability to enabled BlobDB GC for BLOCKCHAIN column family [#8599](https://github.com/hyperledger/besu/pull/8599)
1010
- `--Xplugin-rocksdb-blob-garbage-collection-age-cutoff`, `--Xplugin-rocksdb-blob-garbage-collection-force-threshold` BlobDB GC config options [#8599](https://github.com/hyperledger/besu/pull/8599)
1111
- Update discovery library to 25.4.0 [#8635](https://github.com/hyperledger/besu/pull/8635)
12+
- Increase default target-gas-limit to 60M for Ephemery [#8622](https://github.com/hyperledger/besu/pull/8622)
1213

1314
## 25.5.0
1415
### Breaking Changes

consensus/merge/src/main/java/org/hyperledger/besu/consensus/merge/blockcreation/MergeCoordinator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public class MergeCoordinator implements MergeMiningCoordinator, BadChainListene
9090
BigInteger.valueOf(11155111), NEXT_STEP_TARGET_GAS_LIMIT_TESTNET, // Sepolia
9191
BigInteger.valueOf(17000), NEXT_STEP_TARGET_GAS_LIMIT_TESTNET, // Holesky
9292
BigInteger.valueOf(560048), DEFAULT_TARGET_GAS_LIMIT_TESTNET, // Hoodi
93-
BigInteger.valueOf(39438135), DEFAULT_TARGET_GAS_LIMIT_TESTNET // Ephemery
93+
BigInteger.valueOf(39438135), NEXT_STEP_TARGET_GAS_LIMIT_TESTNET // Ephemery
9494
);
9595

9696
/** The Mining parameters. */

consensus/merge/src/test/java/org/hyperledger/besu/consensus/merge/blockcreation/MergeCoordinatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ public static Stream<Arguments> getGasLimits() {
10141014
Arguments.of("holesky", 17_000L, 60_000_000L),
10151015
Arguments.of("sepolia", 11_155_111L, 60_000_000L),
10161016
Arguments.of("hoodi", 560_048L, 36_000_000L),
1017-
Arguments.of("ephemery", 39_438_135L, 36_000_000L));
1017+
Arguments.of("ephemery", 39_438_135L, 60_000_000L));
10181018
}
10191019

10201020
private void sendNewPayloadAndForkchoiceUpdate(

ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/ScheduledProtocolSpec.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public String toString() {
4343
return String.format("%s:%d", name, milestone);
4444
}
4545
}
46-
;
4746

4847
class TimestampProtocolSpec implements ScheduledProtocolSpec {
4948

0 commit comments

Comments
 (0)