-
Notifications
You must be signed in to change notification settings - Fork 844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default storage format now Bonsai #6536
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
451d4d9
snap default
macfarla b0714e5
default bonsai
macfarla 44c1425
snap by default to replace fast
macfarla 7795f2c
default snap
macfarla 5c8bce9
removed dup test / merge snafu
macfarla 2f92139
default bonsai
macfarla e6fa9cb
Merge branch 'main' of github.com:hyperledger/besu into bonsai-default
macfarla b8a6702
be explicit about config in tests
macfarla 872593a
Merge branch 'main' of github.com:hyperledger/besu into bonsai-default
macfarla ece0c7c
fixed test support in-memory storage
macfarla b321346
default (forest) config for runner test
macfarla a722135
default (forest) config for ATs
macfarla a23fec0
Merge branch 'main' of github.com:hyperledger/besu into bonsai-default
macfarla 8bb3c18
default forest storage for fast sync tests
macfarla a7638bb
Merge branch 'main' of github.com:hyperledger/besu into bonsai-default
macfarla c40de90
Merge branch 'main' of github.com:hyperledger/besu into bonsai-default
macfarla 5fd4efd
added upcoming breaking changes section
macfarla 79f5181
changelog
macfarla 131792f
added db mismatch message
macfarla 673ab7f
Merge branch 'main' of github.com:hyperledger/besu into bonsai-default
macfarla 0824e50
reword changelog
macfarla dcd3bae
Update CHANGELOG.md
macfarla d42908f
Merge branch 'main' into bonsai-default
macfarla File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
import org.hyperledger.besu.ethereum.p2p.peers.EnodeURLImpl; | ||
import org.hyperledger.besu.ethereum.storage.keyvalue.KeyValueStorageProvider; | ||
import org.hyperledger.besu.ethereum.storage.keyvalue.KeyValueStorageProviderBuilder; | ||
import org.hyperledger.besu.ethereum.worldstate.DataStorageConfiguration; | ||
import org.hyperledger.besu.evm.internal.EvmConfiguration; | ||
import org.hyperledger.besu.metrics.MetricsSystemFactory; | ||
import org.hyperledger.besu.metrics.ObservableMetricsSystem; | ||
|
@@ -201,6 +202,7 @@ public void startNode(final BesuNode node) { | |
.nodeKey(new NodeKey(new KeyPairSecurityModule(KeyPairUtil.loadKeyPair(dataDir)))) | ||
.metricsSystem(metricsSystem) | ||
.transactionPoolConfiguration(txPoolConfig) | ||
.dataStorageConfiguration(DataStorageConfiguration.DEFAULT_FOREST_CONFIG) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same as above |
||
.ethProtocolConfiguration(EthProtocolConfiguration.defaultConfig()) | ||
.clock(Clock.systemUTC()) | ||
.isRevertReasonEnabled(node.isRevertReasonEnabled()) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should not be better to use BONSAI in tests since it is the default?