diff --git a/CHANGELOG.md b/CHANGELOG.md index 7879aee4c22..7693b8a6451 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ### Additions and Improvements - Execution layer (The Merge): - - Execution specific RPC endpoint [[#3378](https://github.com/hyperledger/besu/issues/3378) + - Execution specific RPC endpoint [#3378](https://github.com/hyperledger/besu/issues/3378) - Adds JWT authentication to Engine APIs - Supports kiln V2.1 spec - Tracing APIs @@ -53,11 +53,11 @@ - Add option to require replay protection for locally submitted transactions [\#1975](https://github.com/hyperledger/besu/issues/1975) - Update to block header validation for IBFT and QBFT to support London fork EIP-1559 [#3251](https://github.com/hyperledger/besu/pull/3251) - Move into SLF4J as logging facade [#3285](https://github.com/hyperledger/besu/pull/3285) -- Changing the order in which we traverse the word state tree during fast sync. This should improve fast sync during subsequent pivot changes. +- Changing the order in which we traverse the word state tree during fast sync. This should improve fast sync during subsequent pivot changes.[#3202](https://github.com/hyperledger/besu/pull/3202) - Updated besu-native to version 0.4.3 [#3331](https://github.com/hyperledger/besu/pull/3331) - Refactor synchronizer to asynchronously retrieve blocks from peers, and to change peer when retrying to get a block. [#3326](https://github.com/hyperledger/besu/pull/3326) - Disable RocksDB TTL compactions [#3356](https://github.com/hyperledger/besu/pull/3356) -- add a websocket frame size configuration CLI parameter [3368][https://github.com/hyperledger/besu/pull/3379] +- add a websocket frame size configuration CLI parameter [3386][https://github.com/hyperledger/besu/pull/3386] - Add `--ec-curve` parameter to export/export-address public-key subcommands [#3333](https://github.com/hyperledger/besu/pull/3333) ### Bug Fixes diff --git a/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java b/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java index 0cbacd34211..b671fbe517d 100644 --- a/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java +++ b/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java @@ -2002,7 +2002,7 @@ private JsonRpcConfiguration createEngineJsonRpcConfiguration( engineConfig.setAuthenticationPublicKeyFile(engineJwtKeyFile.toFile()); } else { logger.info( - "Engine API authentication enabled without key file. Expect ephemeral jwt.hex dile in datadir"); + "Engine API authentication enabled without key file. Expect ephemeral jwt.hex file in datadir"); } } return engineConfig;