2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-02-22 19:48:27 +00:00
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
}