forked from cerc-io/plugeth
13 lines
138 B
Go
13 lines
138 B
Go
package ar
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/trie"
|
|
)
|
|
|
|
type Block interface {
|
|
Trie() *trie.Trie
|
|
Diff() *big.Int
|
|
}
|