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.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/pow/ar/block.go b/pow/ar/block.go
new file mode 100644
index 000000000..541092f7e
--- /dev/null
+++ b/pow/ar/block.go
@@ -0,0 +1,12 @@
+package ar
+
+import (
+ "math/big"
+
+ "github.com/ethereum/go-ethereum/ethtrie"
+)
+
+type Block interface {
+ Trie() *ethtrie.Trie
+ Diff() *big.Int
+}