diff --git a/ethereum/blockcreation/src/main/java/org/hyperledger/besu/ethereum/blockcreation/AbstractBlockCreator.java b/ethereum/blockcreation/src/main/java/org/hyperledger/besu/ethereum/blockcreation/AbstractBlockCreator.java index 90bfe3569e8..7ee51222d4f 100644 --- a/ethereum/blockcreation/src/main/java/org/hyperledger/besu/ethereum/blockcreation/AbstractBlockCreator.java +++ b/ethereum/blockcreation/src/main/java/org/hyperledger/besu/ethereum/blockcreation/AbstractBlockCreator.java @@ -127,7 +127,7 @@ protected AbstractBlockCreator( * body, and will supply an empty Ommers list. * *
Once transactions have been selected and applied to a disposable/temporary world state, the - * block reward is paid to the relevant coinbase, and a sealable header is constucted. + * block reward is paid to the relevant coinbase, and a sealable header is constructed. * *
The sealableHeader is then provided to child instances for sealing (i.e. proof of work or * otherwise). diff --git a/ethereum/core/src/test/java/org/hyperledger/besu/ethereum/privacy/PrivateTransactionLocatorTest.java b/ethereum/core/src/test/java/org/hyperledger/besu/ethereum/privacy/PrivateTransactionLocatorTest.java index 31ca945549e..10985a2be84 100644 --- a/ethereum/core/src/test/java/org/hyperledger/besu/ethereum/privacy/PrivateTransactionLocatorTest.java +++ b/ethereum/core/src/test/java/org/hyperledger/besu/ethereum/privacy/PrivateTransactionLocatorTest.java @@ -206,7 +206,7 @@ public void locateBesuPrivateTransactionNotFoundInAddBlob() { } /* - Overrride enclave so it returns 404 when searching for a single tx (first call) and when + Override enclave so it returns 404 when searching for a single tx (first call) and when searching for the add blob (second call) */ private void mockEnlaveNoSingleTxOrAddBlob() { diff --git a/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/benchmarks/BenchmarkExecutor.java b/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/benchmarks/BenchmarkExecutor.java index ccc9152f757..8beab2f7c86 100644 --- a/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/benchmarks/BenchmarkExecutor.java +++ b/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/benchmarks/BenchmarkExecutor.java @@ -146,7 +146,7 @@ public static GasCalculator gasCalculatorForFork(final String fork) { /** * Run the benchmarks * - * @param output stream to print results to (typicall System.out) + * @param output stream to print results to (typically System.out) * @param attemptNative Should the benchmark attempt to us native libraries? (null use the * default, false disabled, true enabled) * @param fork the fork name to run the benchmark against. diff --git a/evm/src/main/java/org/hyperledger/besu/collections/undo/Undoable.java b/evm/src/main/java/org/hyperledger/besu/collections/undo/Undoable.java index 274bbc2297b..607b93c4b16 100644 --- a/evm/src/main/java/org/hyperledger/besu/collections/undo/Undoable.java +++ b/evm/src/main/java/org/hyperledger/besu/collections/undo/Undoable.java @@ -49,7 +49,7 @@ static long incrementMarkStatic() { } /** - * The last time this object was updated. Any undo requrests greater than this mark will result in + * The last time this object was updated. Any undo requests greater than this mark will result in * no changes. * * @return The most recent mark. diff --git a/evm/src/main/java/org/hyperledger/besu/evm/EVM.java b/evm/src/main/java/org/hyperledger/besu/evm/EVM.java index ea490d9ff50..debdb5e9b14 100644 --- a/evm/src/main/java/org/hyperledger/besu/evm/EVM.java +++ b/evm/src/main/java/org/hyperledger/besu/evm/EVM.java @@ -138,7 +138,7 @@ public int getMaxEOFVersion() { /** * Returns the non-fork related configuration parameters of the EVM. * - * @return the EVM coniguration. + * @return the EVM configuration. */ public EvmConfiguration getEvmConfiguration() { return evmConfiguration; diff --git a/evm/src/main/java/org/hyperledger/besu/evm/precompile/ECRECPrecompiledContract.java b/evm/src/main/java/org/hyperledger/besu/evm/precompile/ECRECPrecompiledContract.java index 94920abca06..f129cc85141 100644 --- a/evm/src/main/java/org/hyperledger/besu/evm/precompile/ECRECPrecompiledContract.java +++ b/evm/src/main/java/org/hyperledger/besu/evm/precompile/ECRECPrecompiledContract.java @@ -47,7 +47,7 @@ public ECRECPrecompiledContract(final GasCalculator gasCalculator) { } /** - * Configure a new ECRecover precompile with a specific signature algorith and gas. + * Configure a new ECRecover precompile with a specific signature algorithm and gas. * * @param gasCalculator the gas calculator * @param signatureAlgorithm the algorithm (such as secp256k1 or secp256r1)