Skip to content
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 cmd/evm/eest.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import "regexp"
// within its filename by the execution spec test (EEST).
type testMetadata struct {
fork string
module string // which python module gnerated the test, e.g. eip7702
module string // which python module generated the test, e.g. eip7702
file string // exact file the test came from, e.g. test_gas.py
function string // func that created the test, e.g. test_valid_mcopy_operations
parameters string // the name of the parameters which were used to fill the test, e.g. zero_inputs
Expand Down
2 changes: 1 addition & 1 deletion core/remote_state_verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ func (vt *verifyTask) Start(verifyCh chan common.Hash) {
}
newVerifyMsgTypeGauge(msg.verifyResult.Status.Code, msg.peerId).Inc(1)
case <-resend.C:
// if a task has run over 15s, try all the vaild peers to verify.
// if a task has run over 15s, try all the valid peers to verify.
if time.Since(vt.startAt) < tryAllPeersTime {
vt.sendVerifyRequest(1)
} else {
Expand Down
2 changes: 1 addition & 1 deletion core/state_transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ func (st *stateTransition) validateAuthorization(auth *types.SetCodeAuthorizatio
}
}
// Check the authority account
// 1) doesn't have code or has exisiting delegation
// 1) doesn't have code or has existing delegation
// 2) matches the auth's nonce
//
// Note it is added to the access list even if the authorization is invalid.
Expand Down