diff --git a/core/interface.go b/core/interface.go index 073fb48..b8b2c80 100644 --- a/core/interface.go +++ b/core/interface.go @@ -55,6 +55,9 @@ type Backend interface { SubscribePendingLogsEvent(ch chan<- [][]byte) Subscription // RLP Encoded logs SubscribeRemovedLogsEvent(ch chan<- []byte) Subscription // RLP encoded logs + GetTrie(hash Hash) (Trie, error) + GetAccountTrie(stateRoot Hash, account Address) (Trie, error) + // ChainConfig() *params.ChainConfig // Engine() consensus.Engine }