quorum/pow/ar/block.go

13 lines
138 B
Go
Raw Normal View History

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