diff --git a/rpc/handler.go b/rpc/handler.go index 8ef948696f..d4204df821 100644 --- a/rpc/handler.go +++ b/rpc/handler.go @@ -353,7 +353,7 @@ func (h *handler) addRequestOp(op *requestOp) { } } -// removeRequestOps stops waiting for the given request IDs. +// removeRequestOp stops waiting for the given request IDs. func (h *handler) removeRequestOp(op *requestOp) { for _, id := range op.ids { delete(h.respWait, string(id)) diff --git a/sync/statesync/state_syncer.go b/sync/statesync/state_syncer.go index df250b30f2..6fae233802 100644 --- a/sync/statesync/state_syncer.go +++ b/sync/statesync/state_syncer.go @@ -118,7 +118,7 @@ func (t *stateSync) onStorageTrieFinished(root common.Hash) error { return t.removeTrieInProgress(root) } -// onMainTrieFinishes is called after the main trie finishes syncing. +// onMainTrieFinished is called after the main trie finishes syncing. func (t *stateSync) onMainTrieFinished() error { t.codeSyncer.notifyAccountTrieCompleted() diff --git a/tests/utils/command.go b/tests/utils/command.go index bd5a982e9b..b94a4b76ec 100644 --- a/tests/utils/command.go +++ b/tests/utils/command.go @@ -91,7 +91,7 @@ func RegisterNodeRun() { }) } -// RunDefaultHardhatTests runs the hardhat tests in the given [testPath] on the blockchain with [blockchainID] +// RunHardhatTests runs the hardhat tests in the given [testPath] on the blockchain with [blockchainID] // [execPath] is the path where the test command is executed func RunHardhatTests(ctx context.Context, blockchainID string, execPath string, testPath string) { chainURI := GetDefaultChainURI(blockchainID)