diff --git a/accounts/abi/bind/v2/dep_tree_test.go b/accounts/abi/bind/v2/dep_tree_test.go index e686e3fec4..ec4759183a 100644 --- a/accounts/abi/bind/v2/dep_tree_test.go +++ b/accounts/abi/bind/v2/dep_tree_test.go @@ -329,7 +329,7 @@ func TestContractLinking(t *testing.T) { map[rune]struct{}{}, }, // two contracts ('a' and 'f') share some dependencies. contract 'a' is marked as an override. expect that any of - // its depdencies that aren't shared with 'f' are not deployed. + // its dependencies that aren't shared with 'f' are not deployed. linkTestCaseInput{map[rune][]rune{ 'a': {'b', 'c', 'd', 'e'}, 'f': {'g', 'c', 'd', 'h'}}, diff --git a/accounts/abi/bind/v2/internal/contracts/db/contract.sol b/accounts/abi/bind/v2/internal/contracts/db/contract.sol index f24aa8d381..640436182a 100644 --- a/accounts/abi/bind/v2/internal/contracts/db/contract.sol +++ b/accounts/abi/bind/v2/internal/contracts/db/contract.sol @@ -25,7 +25,7 @@ contract DB { if (v == 0) { return _keys.length; } - // Check if a key is being overriden + // Check if a key is being overridden if (_store[k] == 0) { _keys.push(k); _stats.inserts++; diff --git a/eth/bor_checkpoint_verifier.go b/eth/bor_checkpoint_verifier.go index 0f63c2a451..f077eda7a7 100644 --- a/eth/bor_checkpoint_verifier.go +++ b/eth/bor_checkpoint_verifier.go @@ -37,7 +37,7 @@ var ( // errEndBlock is returned when we're unable to fetch the tip confirmation block locally. errTipConfirmationBlock = errors.New("failed to get tip confirmation block") - // rewindLengthMeter for collecting info about the length of chain rewinded + // rewindLengthMeter for collecting info about the length of chain rewound rewindLengthMeter = metrics.NewRegisteredMeter("chain/autorewind/length", nil) ) diff --git a/eth/protocols/snap/sync.go b/eth/protocols/snap/sync.go index 6a6464925c..e758d8df87 100644 --- a/eth/protocols/snap/sync.go +++ b/eth/protocols/snap/sync.go @@ -84,7 +84,7 @@ const ( minTrienodeHealThrottle = 1 // maxTrienodeHealThrottle is the maximum divisor for throttling trie node - // heal requests to avoid overloading the local node and exessively expanding + // heal requests to avoid overloading the local node and excessively expanding // the state trie bedth wise. maxTrienodeHealThrottle = maxTrieRequestCount diff --git a/node/api.go b/node/api.go index 35396bc6c3..5fc6d5945e 100644 --- a/node/api.go +++ b/node/api.go @@ -52,7 +52,7 @@ func (n *Node) apis() []rpc.API { } // adminAPI is the collection of administrative API methods exposed over -// both secure and unsecure RPC channels. +// both secure and insecure RPC channels. type adminAPI struct { node *Node // Node interfaced by this API }