From 2b6288c83c0cdd2e7fa04cc4ef08b5923c1448be Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Tue, 15 Mar 2022 08:34:25 +1000 Subject: [PATCH] [MINOR] corrections to changelog and typos (#3580) * typos * 3379 was the pr to merge branch * added link for 3202 Signed-off-by: Sally MacFarlane --- CHANGELOG.md | 6 +++--- .../src/main/java/org/hyperledger/besu/cli/BesuCommand.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 182bfbb0470..828a5579ead 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 @@ -56,11 +56,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;