aboutsummaryrefslogtreecommitdiffstats
path: root/pow/block.go
blob: eb07bc86e7b78d77c74aaef95478b27a6ed9ccd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package pow

import (
    "github.com/ethereum/go-ethereum/core/types"
    "math/big"
)

type Block interface {
    Difficulty() *big.Int
    HashNoNonce() []byte
    Nonce() []byte
    MixDigest() []byte
    SeedHash() []byte
    NumberU64() uint64
}

type ChainManager interface {
    GetBlockByNumber(uint64) *types.Block
    CurrentBlock() *types.Block
}