plugeth/pow/block.go
2015-02-27 15:59:33 -05:00

11 lines
137 B
Go

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