mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 18:42:19 +00:00
12 lines
138 B
Go
12 lines
138 B
Go
|
package ar
|
||
|
|
||
|
import (
|
||
|
"math/big"
|
||
|
"github.com/ethereum/eth-go/ethtrie"
|
||
|
)
|
||
|
|
||
|
type Block interface {
|
||
|
Trie() *ethtrie.Trie
|
||
|
Diff() *big.Int
|
||
|
}
|