Skip to content

Commit 3f00bad

Browse files
authored
[MINOR] Fixed some typos (#7299)
* typos Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com> --------- Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
1 parent 3117f15 commit 3f00bad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/container-security-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: false
99
default: 'develop'
1010
schedule:
11-
# Start of the hour is the busy time. Scheule it to run 8:17am UTC
11+
# Start of the hour is the busy time. Schedule it to run 8:17am UTC
1212
- cron: '17 8 * * *'
1313

1414
jobs:

ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/MainnetProtocolSpecs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,9 +642,9 @@ static ProtocolSpecBuilder pragueDefinition(
642642

643643
return cancunDefinition(
644644
chainId, enableRevertReason, genesisConfigOptions, evmConfiguration, miningParameters)
645-
// EIP-3074 AUTH and AUTCALL gas
645+
// EIP-3074 AUTH and AUTHCALL gas
646646
.gasCalculator(PragueGasCalculator::new)
647-
// EIP-3074 AUTH and AUTCALL
647+
// EIP-3074 AUTH and AUTHCALL
648648
.evmBuilder(
649649
(gasCalculator, jdCacheConfig) ->
650650
MainnetEVMs.prague(

ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/manager/snap/SnapProtocolManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void stop() {}
8484
public void awaitStop() throws InterruptedException {}
8585

8686
/**
87-
* This function is called by the P2P framework when an "SNAP message has been received.
87+
* This function is called by the P2P framework when a SNAP message has been received.
8888
*
8989
* @param cap The capability under which the message was transmitted.
9090
* @param message The message to be decoded.

ethereum/trie/src/main/java/org/hyperledger/besu/ethereum/trie/MerkleTrie.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import org.apache.tuweni.bytes.Bytes;
2929
import org.apache.tuweni.bytes.Bytes32;
3030

31-
/** An Merkle Patricial Trie. */
31+
/** A Merkle Patricia Trie. */
3232
public interface MerkleTrie<K, V> {
3333

3434
Bytes EMPTY_TRIE_NODE = RLP.NULL;

0 commit comments

Comments
 (0)