2014-10-10 20:44:20 +00:00
|
|
|
package ar
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
2014-10-23 13:01:27 +00:00
|
|
|
|
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
|
|
|
|
}
|