mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
core: add comment about 7702 state transition error
This commit is contained in:
parent
e7c0f80e4f
commit
bd36423319
1 changed files with 1 additions and 0 deletions
|
|
@ -123,6 +123,7 @@ var (
|
|||
ErrAuthSignatureVeryHigh = errors.New("EIP-7702 authorization with R or S value greater than 2^256 - 1")
|
||||
|
||||
// EIP-7702 state transition errors:
|
||||
// Note these are just informational, and do not cause tx execution abort.
|
||||
ErrAuthorizationWrongChainID = errors.New("EIP-7702 authorization chain ID mismatch")
|
||||
ErrAuthorizationNonceOverflow = errors.New("EIP-7702 authorization nonce > 64 bit")
|
||||
ErrAuthorizationInvalidSignature = errors.New("EIP-7702 authorization has invalid signature")
|
||||
|
|
|
|||
Loading…
Reference in a new issue