mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 16:47:22 +00:00
12 lines
144 B
Go
12 lines
144 B
Go
package ar
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/ethtrie"
|
|
)
|
|
|
|
type Block interface {
|
|
Trie() *ethtrie.Trie
|
|
Diff() *big.Int
|
|
}
|