mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-10 05:09:03 +00:00
11 lines
138 B
Go
11 lines
138 B
Go
package ar
|
|
|
|
import (
|
|
"math/big"
|
|
"github.com/ethereum/eth-go/ethtrie"
|
|
)
|
|
|
|
type Block interface {
|
|
Trie() *ethtrie.Trie
|
|
Diff() *big.Int
|
|
}
|