From bd36423319c6263b85022ab03a1b7604823ef64c Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 2 Dec 2024 13:47:42 +0100 Subject: [PATCH] core: add comment about 7702 state transition error --- core/error.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/error.go b/core/error.go index f1cc7d8c03..71a7e9be5f 100644 --- a/core/error.go +++ b/core/error.go @@ -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")