2014-10-10 15:44:20 -05:00
|
|
|
package ar
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
2014-10-23 08:01:27 -05:00
|
|
|
|
2014-10-31 12:40:32 -05:00
|
|
|
"github.com/ethereum/go-ethereum/trie"
|
2014-10-10 15:44:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type Block interface {
|
2014-10-31 12:40:32 -05:00
|
|
|
Trie() *trie.Trie
|
2014-10-10 15:44:20 -05:00
|
|
|
Diff() *big.Int
|
|
|
|
}
|