quorum/pow/block.go

10 lines
108 B
Go
Raw Normal View History

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