From 4c6d82e4c81e018fdbad98468f431ec6ce430315 Mon Sep 17 00:00:00 2001 From: philip-morlier Date: Tue, 4 Apr 2023 21:24:46 -0700 Subject: [PATCH] added IntermediateRoot() to core/interface --- core/interface.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/interface.go b/core/interface.go index 382b7ef..9820fb0 100644 --- a/core/interface.go +++ b/core/interface.go @@ -111,6 +111,8 @@ type StateDB interface { AddressInAccessList(addr Address) bool SlotInAccessList(addr Address, slot Hash) (addressOk bool, slotOk bool) + + IntermediateRoot(deleteEmptyObjects bool) Hash } type RWStateDB interface {