From 60bcc82b4cecda3b5abc7391945070a4f9bf98e5 Mon Sep 17 00:00:00 2001 From: lightclient Date: Wed, 29 Oct 2025 19:58:20 -0600 Subject: [PATCH] core/types: remove unused auth cache on setcode tx --- core/types/tx_setcode.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/types/tx_setcode.go b/core/types/tx_setcode.go index 86eec46be0..c1d99a09fb 100644 --- a/core/types/tx_setcode.go +++ b/core/types/tx_setcode.go @@ -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