GasLimit check updated

This commit is contained in:
obscuren
2015-03-03 17:05:51 +01:00
parent c74c07eed1
commit ee0a1bec6c
3 changed files with 17 additions and 6 deletions

View File

@ -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()