aboutsummaryrefslogtreecommitdiffstats
path: root/pow/block.go
blob: 86a6aa1b02bc99cb93a89f22ddc65c2ac947aef4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package pow

import "math/big"

type Block interface {
    Difficulty() *big.Int
    HashNoNonce() []byte
    Nonce() []byte
    Number() *big.Int
}