core/types: remove unused auth cache on setcode tx

This commit is contained in:
lightclient 2025-10-29 19:58:20 -06:00
parent df0f945f6d
commit 60bcc82b4c
No known key found for this signature in database
GPG key ID: 657913021EF45A6A

View file

@ -21,7 +21,6 @@ import (
"crypto/ecdsa"
"errors"
"math/big"
"sync/atomic"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
@ -65,9 +64,6 @@ type SetCodeTx struct {
V *uint256.Int
R *uint256.Int
S *uint256.Int
// caches
auths atomic.Pointer[authCache]
}
type authCache []*common.Address