Skip to content

Commit

Permalink
Update for 24.1.0 (#961)
Browse files Browse the repository at this point in the history
* update besu version to 23.10.3
* add goerli notice to changelog
* in ATs using Besu remove --tx-pool-limit-by-account-percentage and use default layered tx pool
  • Loading branch information
jframe authored Jan 10, 2024
1 parent e9830b7 commit 671de39
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 24.1.0

This is an optional release for mainnet Ethereum and it includes the updated network configuration for the Goerli Deneb fork.

### Upcoming Breaking Changes
- `--Xworker-pool-size` cli option will be removed in a future release. This option has been replaced with `--vertx-worker-pool-size`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.math.BigInteger;
import java.net.URISyntaxException;
import java.nio.file.Path;
import java.util.List;

import com.google.common.io.Resources;
import org.junit.jupiter.api.AfterEach;
Expand All @@ -44,10 +43,7 @@ public class Eth1RpcAcceptanceTestBase extends AcceptanceTestBase {
protected Path keyFileTempDir;

protected void startBesu() {
final BesuNodeConfig besuNodeConfig =
BesuNodeConfigBuilder.aBesuNodeConfig()
.withAdditionalCommandLineArgs(List.of("--tx-pool-limit-by-account-percentage=1"))
.build();
final BesuNodeConfig besuNodeConfig = BesuNodeConfigBuilder.aBesuNodeConfig().build();

besu = BesuNodeFactory.create(besuNodeConfig);
besu.start();
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
besuVersion=23.7.2
besuVersion=23.10.3
besuDistroUrl=https://hyperledger.jfrog.io/artifactory/besu-binaries/besu/${besuVersion}/besu-${besuVersion}.tar.gz

hashicorpVaultVersion=1.9.2
Expand Down
4 changes: 2 additions & 2 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ dependencyManagement {
entry 'mockito-junit-jupiter'
}

dependency 'org.hyperledger.besu:plugin-api:23.10.2'
dependency 'org.hyperledger.besu.internal:metrics-core:23.10.2'
dependency 'org.hyperledger.besu:plugin-api:23.10.3'
dependency 'org.hyperledger.besu.internal:metrics-core:23.10.3'

dependency 'org.xipki.iaik:sunpkcs11-wrapper:1.4.10'

Expand Down

0 comments on commit 671de39

Please sign in to comment.