From ee0a1bec6c3ce942e51265535961ac6a745d33eb Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 3 Mar 2015 17:05:51 +0100 Subject: GasLimit check updated --- state/statedb.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'state/statedb.go') diff --git a/state/statedb.go b/state/statedb.go index ee37c2e68..2ef928a9d 100644 --- a/state/statedb.go +++ b/state/statedb.go @@ -239,6 +239,10 @@ func (s *StateDB) Root() []byte { return s.trie.Root() } +func (s *StateDB) Trie() *trie.SecureTrie { + return s.trie +} + // Resets the trie and all siblings func (s *StateDB) Reset() { s.trie.Reset() -- cgit v1.2.3