aboutsummaryrefslogtreecommitdiffstats
path: root/pow/ar/block.go
diff options
context:
space:
mode:
Diffstat (limited to 'pow/ar/block.go')
-rw-r--r--pow/ar/block.go4
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
}