plugeth/pow/ar/block.go

13 lines
138 B
Go
Raw Normal View History

2014-10-10 20:44:20 +00:00
package ar
import (
"math/big"
2014-10-31 17:40:32 +00:00
"github.com/ethereum/go-ethereum/trie"
2014-10-10 20:44:20 +00:00
)
type Block interface {
2014-10-31 17:40:32 +00:00
Trie() *trie.Trie
2014-10-10 20:44:20 +00:00
Diff() *big.Int
}