[MINOR] Fixed some typos (#7299)

* typos

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>

---------

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
pull/7321/head
Sally MacFarlane 4 months ago committed by GitHub
parent 3117f15a3a
commit 3f00bad598
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/container-security-scan.yml
  2. 4
      ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/MainnetProtocolSpecs.java
  3. 2
      ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/manager/snap/SnapProtocolManager.java
  4. 2
      ethereum/trie/src/main/java/org/hyperledger/besu/ethereum/trie/MerkleTrie.java

@ -8,7 +8,7 @@ on:
required: false required: false
default: 'develop' default: 'develop'
schedule: schedule:
# Start of the hour is the busy time. Scheule it to run 8:17am UTC # Start of the hour is the busy time. Schedule it to run 8:17am UTC
- cron: '17 8 * * *' - cron: '17 8 * * *'
jobs: jobs:

@ -642,9 +642,9 @@ public abstract class MainnetProtocolSpecs {
return cancunDefinition( return cancunDefinition(
chainId, enableRevertReason, genesisConfigOptions, evmConfiguration, miningParameters) chainId, enableRevertReason, genesisConfigOptions, evmConfiguration, miningParameters)
// EIP-3074 AUTH and AUTCALL gas // EIP-3074 AUTH and AUTHCALL gas
.gasCalculator(PragueGasCalculator::new) .gasCalculator(PragueGasCalculator::new)
// EIP-3074 AUTH and AUTCALL // EIP-3074 AUTH and AUTHCALL
.evmBuilder( .evmBuilder(
(gasCalculator, jdCacheConfig) -> (gasCalculator, jdCacheConfig) ->
MainnetEVMs.prague( MainnetEVMs.prague(

@ -84,7 +84,7 @@ public class SnapProtocolManager implements ProtocolManager {
public void awaitStop() throws InterruptedException {} public void awaitStop() throws InterruptedException {}
/** /**
* This function is called by the P2P framework when an "SNAP message has been received. * This function is called by the P2P framework when a SNAP message has been received.
* *
* @param cap The capability under which the message was transmitted. * @param cap The capability under which the message was transmitted.
* @param message The message to be decoded. * @param message The message to be decoded.

@ -28,7 +28,7 @@ import java.util.function.Function;
import org.apache.tuweni.bytes.Bytes; import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.Bytes32; import org.apache.tuweni.bytes.Bytes32;
/** An Merkle Patricial Trie. */ /** A Merkle Patricia Trie. */
public interface MerkleTrie<K, V> { public interface MerkleTrie<K, V> {
Bytes EMPTY_TRIE_NODE = RLP.NULL; Bytes EMPTY_TRIE_NODE = RLP.NULL;

Loading…
Cancel
Save