diff options
author | Felix Lange <fjl@twurst.com> | 2014-11-01 01:40:32 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-11-01 01:52:58 +0800 |
commit | f3473312ba90b37b9a4100592a8c4d5d5bf245b7 (patch) | |
tree | efc14c86ce3c9b45bcc09c84dc9fbed79c089cb9 /pow/ar/block.go | |
parent | 5af4ff985dc43b648bdc96394a3bd96d9658ae0a (diff) | |
download | go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.gz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.bz2 go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.lz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.xz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.zst go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.zip |
all: fix rename breakage
Diffstat (limited to 'pow/ar/block.go')
-rw-r--r-- | pow/ar/block.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pow/ar/block.go b/pow/ar/block.go index 541092f7e..2124b53b4 100644 --- a/pow/ar/block.go +++ b/pow/ar/block.go @@ -3,10 +3,10 @@ package ar import ( "math/big" - "github.com/ethereum/go-ethereum/ethtrie" + "github.com/ethereum/go-ethereum/trie" ) type Block interface { - Trie() *ethtrie.Trie + Trie() *trie.Trie Diff() *big.Int } |