plugeth/pow/block.go
obscuren 4cd79d8ddd Refactored block & Transaction
* Includes new rlp decoder
2014-12-23 13:48:44 +01:00

10 lines
114 B
Go

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