From f7b1e86811652ecc605b882ac4223a7e693477dd Mon Sep 17 00:00:00 2001 From: standstaff Date: Fri, 15 Mar 2024 16:49:03 +0800 Subject: [PATCH] chore: fix some typos Signed-off-by: standstaff --- CHANGELOG.md | 2 +- besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java | 2 +- .../org/hyperledger/besu/ethereum/core/VersionMetadata.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d95944227b..b1e07c26d4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2326,7 +2326,7 @@ Workaround - Limit the number of blocks queried by each `eth_getLogs` call. - Implemented private contract log filters including JSON-RPC methods to interact with private filters. [\#735](https://github.com/hyperledger/besu/pull/735) - Implemented EIP-2315: Simple Subroutines for the EVM [\#717](https://github.com/hyperledger/besu/pull/717) - Implemented Splunk logging. [\#725](https://github.com/hyperledger/besu/pull/725) -- Implemented optional native library encryption. [\#675](https://github.com/hyperledger/besu/pull/675). To enable add `--Xsecp256k1-native-enabled` (for transaciton signatures) and/or `--Xaltbn128-native-enabled` (for altbn128 precomiled contracts) as command line options. +- Implemented optional native library encryption. [\#675](https://github.com/hyperledger/besu/pull/675). To enable add `--Xsecp256k1-native-enabled` (for transaction signatures) and/or `--Xaltbn128-native-enabled` (for altbn128 precomiled contracts) as command line options. ### 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 d5b6468a90c..c993dda3d04 100644 --- a/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java +++ b/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java @@ -2598,7 +2598,7 @@ String getLogLevel() { } /** - * Returns the flag indicating that version compatiblity checks will be made. + * Returns the flag indicating that version compatibility checks will be made. * * @return true if compatibility checks should be made, otherwise false */ diff --git a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/core/VersionMetadata.java b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/core/VersionMetadata.java index afa07cbf84b..5246cb5fae3 100644 --- a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/core/VersionMetadata.java +++ b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/core/VersionMetadata.java @@ -98,7 +98,7 @@ private static VersionMetadata resolveVersionMetadata(final File metadataFile) * data directory. Currently this check is limited to checking that the version is >= the previous * version, to avoid accidentally running a lower version of Besu and potentially corrupting data, * but the method could be extended to perform any other version-to-version compatibility checks - * necessary. If the --version-compatibility-protection flag is set to true and the compatibilty + * necessary. If the --version-compatibility-protection flag is set to true and the compatibility * checks pass, the version metadata is updated to the current version of Besu. */ public static void versionCompatibilityChecks(