From aa8745521f14f5b08ddf7b39047ad17fdb469b2e Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Wed, 6 May 2026 14:28:25 -0400 Subject: [PATCH] core/state: note that error case is unreachable --- core/state/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/database.go b/core/state/database.go index c7b91c90c5..fb878b78c9 100644 --- a/core/state/database.go +++ b/core/state/database.go @@ -252,7 +252,7 @@ func (db *CachingDB) ReaderEIP7928(stateRoot common.Hash, accessList map[common. pr := newPrefetchStateReader(r, accessList, threads) if block { if err := pr.Wait(); err != nil { - panic("wat do") + panic("unreachable") } }