Skip to content
Open
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 accounts/abi/bind/v2/dep_tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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'}},
Expand Down
2 changes: 1 addition & 1 deletion accounts/abi/bind/v2/internal/contracts/db/contract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
Expand Down
2 changes: 1 addition & 1 deletion eth/bor_checkpoint_verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)

Expand Down
2 changes: 1 addition & 1 deletion eth/protocols/snap/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion node/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down