Skip to content

Commit

Permalink
fix: Update Besu version to 24.5.2 (#997)
Browse files Browse the repository at this point in the history
* fix: Update besu version to 24.5.2

 -- Update Besu distro url in gradle.properties

* bug: Fix Besu privacy test

 -- Use FOREST data storage format instead of the default BONSAI which doesnt work with privacy
  • Loading branch information
usmansaleem authored Jun 4, 2024
1 parent db44171 commit 4d0342e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public static BesuNode create(final BesuNodeConfig config) {
params.add("--rpc-http-apis");
params.add("ETH,NET,WEB3,EEA");
params.add("--min-gas-price=0");
params.add("--data-storage-format=FOREST"); // Required for privacy
params.add("--privacy-enabled");
params.add("--privacy-public-key-file");
params.add(privacyPublicKeyFilePath());
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
besuVersion=24.1.2
besuDistroUrl=https://hyperledger.jfrog.io/artifactory/besu-binaries/besu/${besuVersion}/besu-${besuVersion}.tar.gz
besuVersion=24.5.2
besuDistroUrl=https://github.com/hyperledger/besu/releases/download/${besuVersion}/besu-${besuVersion}.tar.gz

hashicorpVaultVersion=1.9.2
hashicorpVaultUrl=https://releases.hashicorp.com/vault
Expand Down

0 comments on commit 4d0342e

Please sign in to comment.