From 7904009c2fbc29e20a87c49fc74a9a3ce819962d Mon Sep 17 00:00:00 2001 From: Ivan Kuznetsov Date: Mon, 4 Sep 2017 11:32:59 +0700 Subject: [PATCH] Set PoW target to 24 --- proofofwork.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proofofwork.go b/proofofwork.go index 967a4bc..fe55525 100644 --- a/proofofwork.go +++ b/proofofwork.go @@ -12,7 +12,7 @@ var ( maxNonce = math.MaxInt64 ) -const targetBits = 16 +const targetBits = 24 // ProofOfWork represents a proof-of-work type ProofOfWork struct {