mirror of
https://github.com/status-im/op-geth.git
synced 2025-02-10 22:06:21 +00:00
13 lines
144 B
Go
13 lines
144 B
Go
package ar
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/ethtrie"
|
|
)
|
|
|
|
type Block interface {
|
|
Trie() *ethtrie.Trie
|
|
Diff() *big.Int
|
|
}
|