Skip to content

feat!: remove deprecated compatibility-eth64-forkid-enabled option #8541

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

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
@@ -1,6 +1,7 @@
# Changelog
## Unreleased
### Breaking Changes
- `--compatibility-eth64-forkid-enabled` has been removed. [#8541](https://github.com/hyperledger/besu/pull/8541)

### Upcoming Breaking Changes
### Additions and Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,6 @@ public class EthProtocolOptions implements CLIOptions<EthProtocolConfiguration>
private PositiveNumber maxGetPooledTransactions =
PositiveNumber.fromInt(EthProtocolConfiguration.DEFAULT_MAX_GET_POOLED_TRANSACTIONS);

@SuppressWarnings("UnusedVariable")
@Deprecated(forRemoval = true)
@CommandLine.Option(
hidden = true,
names = "--compatibility-eth64-forkid-enabled",
paramLabel = "<Boolean>",
description = "This option is deprecated and will be removed in a future release.")
private Boolean legacyEth64ForkIdEnabled = false;

@CommandLine.Option(
hidden = true,
names = {MAX_CAPABILITY},
Expand Down