From 8a4278be30dae05a0f122bc9ae616e5ecb67abd8 Mon Sep 17 00:00:00 2001 From: ivoras Date: Sat, 2 Feb 2019 00:41:25 +0100 Subject: [PATCH] Fixed the message, the keypair might not be for the genesis block --- crypto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto.go b/crypto.go index 7e969ec..b38465b 100644 --- a/crypto.go +++ b/crypto.go @@ -23,7 +23,7 @@ type ecdsaSignature struct { func cryptoInit() { if dbNumPrivateKeys() == 0 { - log.Println("Generating the genesis keypair...") + log.Println("Generating the keypair...") generatePrivateKey(-1) log.Println("Generated.") }