2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-01-25 14:08:58 +00:00
2015-03-03 21:04:31 +01:00

22 lines
330 B
Go

package pow
import (
"math/big"
"github.com/ethereum/go-ethereum/core/types"
)
type Block interface {
Difficulty() *big.Int
HashNoNonce() []byte
Nonce() uint64
MixDigest() []byte
SeedHash() []byte
NumberU64() uint64
}
type ChainManager interface {
GetBlockByNumber(uint64) *types.Block
CurrentBlock() *types.Block
}