From b5f9ae11aa6ef73e29d8b81bd6df8702f00c2011 Mon Sep 17 00:00:00 2001 From: Fabio Di Fabio Date: Mon, 4 Nov 2024 19:22:04 +0100 Subject: [PATCH] Update Linea Besu to 24.11-delivery37 (#1474) Signed-off-by: Fabio Di Fabio --- gradle.properties | 2 +- .../net/consensys/linea/testing/ExecutionEnvironment.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 684c7d41e1..b0169548e3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ releaseVersion=0.8.0-rc4 -besuVersion=24.10-develop-0037615 +besuVersion=24.11-delivery37 besuArtifactGroup=io.consensys.linea-besu distributionIdentifier=linea-tracer distributionBaseUrl=https://artifacts.consensys.net/public/linea-besu/raw/names/linea-besu.tar.gz/versions/ diff --git a/testing/src/main/java/net/consensys/linea/testing/ExecutionEnvironment.java b/testing/src/main/java/net/consensys/linea/testing/ExecutionEnvironment.java index 58962502b5..9bce8fd39a 100644 --- a/testing/src/main/java/net/consensys/linea/testing/ExecutionEnvironment.java +++ b/testing/src/main/java/net/consensys/linea/testing/ExecutionEnvironment.java @@ -43,7 +43,7 @@ import org.hyperledger.besu.ethereum.core.BlockHeader; import org.hyperledger.besu.ethereum.core.BlockHeaderBuilder; import org.hyperledger.besu.ethereum.core.Difficulty; -import org.hyperledger.besu.ethereum.core.MiningParameters; +import org.hyperledger.besu.ethereum.core.MiningConfiguration; import org.hyperledger.besu.ethereum.core.PrivacyParameters; import org.hyperledger.besu.ethereum.mainnet.MainnetProtocolSpecFactory; import org.hyperledger.besu.ethereum.mainnet.ProtocolSchedule; @@ -115,7 +115,7 @@ public static ProtocolSpec getProtocolSpec(BigInteger chainId) { createNodeKey(), false, EvmConfiguration.DEFAULT, - MiningParameters.MINING_DISABLED, + MiningConfiguration.MINING_DISABLED, badBlockManager, false, new NoOpMetricsSystem()); @@ -126,7 +126,7 @@ public static ProtocolSpec getProtocolSpec(BigInteger chainId) { true, OptionalLong.empty(), EvmConfiguration.DEFAULT, - MiningParameters.MINING_DISABLED, + MiningConfiguration.MINING_DISABLED, false, new NoOpMetricsSystem()) .londonDefinition(GENESIS_CONFIG.getConfigOptions());