quorum/pow/ar/block.go

12 lines
138 B
Go
Raw Normal View History

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