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] Fixed some typos #7299

Merged
merged 10 commits into from
Jul 10, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/container-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: false
default: 'develop'
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 * * *'

jobs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,9 @@ static ProtocolSpecBuilder pragueDefinition(

return cancunDefinition(
chainId, enableRevertReason, genesisConfigOptions, evmConfiguration, miningParameters)
// EIP-3074 AUTH and AUTCALL gas
// EIP-3074 AUTH and AUTHCALL gas
.gasCalculator(PragueGasCalculator::new)
// EIP-3074 AUTH and AUTCALL
// EIP-3074 AUTH and AUTHCALL
.evmBuilder(
(gasCalculator, jdCacheConfig) ->
MainnetEVMs.prague(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void stop() {}
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 message The message to be decoded.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.Bytes32;

/** An Merkle Patricial Trie. */
/** A Merkle Patricia Trie. */
public interface MerkleTrie<K, V> {

Bytes EMPTY_TRIE_NODE = RLP.NULL;
Expand Down
Loading