Skip to content
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

[MINOR] corrections to changelog and typos #3580

Merged
merged 4 commits into from
Mar 14, 2022
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down