diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-19 18:35:17 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-19 18:35:17 +0800 |
commit | 24f2b2afc3a848190822c382e6aa31c8ab120f07 (patch) | |
tree | 827603f276bbcba1240f7f6760df48a0349f0286 /ethutil/trie.go | |
parent | c866fcc5b37b53e0d11c1fd7e6cb971859537f2c (diff) | |
download | dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.tar dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.tar.gz dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.tar.bz2 dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.tar.lz dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.tar.xz dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.tar.zst dexon-24f2b2afc3a848190822c382e6aa31c8ab120f07.zip |
Running contracts fixed
Diffstat (limited to 'ethutil/trie.go')
-rw-r--r-- | ethutil/trie.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ethutil/trie.go b/ethutil/trie.go index 95abca602..c25bd80cb 100644 --- a/ethutil/trie.go +++ b/ethutil/trie.go @@ -119,6 +119,10 @@ func (t *Trie) Undo() { t.Root = t.prevRoot } +func (t *Trie) Cache() *Cache { + return t.cache +} + /* * Public (query) interface functions */ |