go-ethereum/pow/block.go

11 lines
137 B
Go
Raw Normal View History

2014-12-10 09:45:16 -06:00
package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
2014-12-10 09:45:16 -06:00
HashNoNonce() []byte
2015-02-27 14:59:33 -06:00
Nonce() []byte
2015-02-05 11:13:35 -06:00
Number() *big.Int
2014-12-10 09:45:16 -06:00
}