Implemented AR PoW

This commit is contained in:
obscuren
2014-10-10 22:44:20 +02:00
parent 56843ca0fc
commit cb845b9bc8
5 changed files with 300 additions and 0 deletions

11
pow/ar/block.go Normal file
View File

@@ -0,0 +1,11 @@
package ar
import (
"math/big"
"github.com/ethereum/eth-go/ethtrie"
)
type Block interface {
Trie() *ethtrie.Trie
Diff() *big.Int
}