go-ethereum/pow/block.go

13 lines
176 B
Go
Raw Normal View History

2014-12-10 17:45:16 +02:00
package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
2014-12-10 17:45:16 +02:00
HashNoNonce() []byte
2015-02-27 22:59:33 +02:00
Nonce() []byte
2015-02-05 19:13:35 +02:00
Number() *big.Int
2015-02-28 03:56:24 +02:00
MixDigest() []byte
SeedHash() []byte
2014-12-10 17:45:16 +02:00
}