plugeth/pow/block.go

10 lines
114 B
Go
Raw Normal View History

2014-12-10 15:45:16 +00:00
package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
2014-12-10 15:45:16 +00:00
HashNoNonce() []byte
N() []byte
}