go-ethereum/pow/block.go

11 lines
133 B
Go
Raw Permalink Normal View History

2014-12-10 16:45:16 +01:00
package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
2014-12-10 16:45:16 +01:00
HashNoNonce() []byte
N() []byte
2015-02-05 09:13:35 -08:00
Number() *big.Int
2014-12-10 16:45:16 +01:00
}