diff options
Diffstat (limited to 'pow/block.go')
-rw-r--r-- | pow/block.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pow/block.go b/pow/block.go index 31e194d8d..86a6aa1b0 100644 --- a/pow/block.go +++ b/pow/block.go @@ -5,6 +5,6 @@ import "math/big" type Block interface { Difficulty() *big.Int HashNoNonce() []byte - N() []byte + Nonce() []byte Number() *big.Int } |