Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Breaking Changes
- ETC Classic support in Besu is removed. This includes all ETC related hardforks including Mordor and Spiral. [#9671](https://github.com/hyperledger/besu/pull/9671)
- Forest db subcommands `x-backup-state` and `x-restore-state` are removed [#9821](https://github.com/hyperledger/besu/pull/9821)
- **Chain pruning CLI options have been redesigned with new behavior:** [#9637](https://github.com/hyperledger/besu/pull/9637)
- `--Xchain-pruning-enabled` now accepts three strategy values instead of boolean:
- `ALL` - prunes both blocks and BALs (replaces the old `--Xchain-pruning-enabled=true`)
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,7 @@
description = "Operator related actions such as generating configuration and caches.",
mixinStandardHelpOptions = true,
versionProvider = VersionProvider.class,
subcommands = {
GenerateBlockchainConfig.class,
GenerateLogBloomCache.class,
BackupState.class,
RestoreState.class
})
subcommands = {GenerateBlockchainConfig.class, GenerateLogBloomCache.class})
public class OperatorSubCommand implements Runnable {

/** The constant COMMAND_NAME. */
Expand Down
Loading