plugeth/pow/block.go
2015-02-27 20:56:24 -05:00

13 lines
176 B
Go

package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
HashNoNonce() []byte
Nonce() []byte
Number() *big.Int
MixDigest() []byte
SeedHash() []byte
}