mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-25 21:07:17 +00:00
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
|
|
}
|