From d06718e1cbde01cece75a9b3ef4cb36ec66b63c5 Mon Sep 17 00:00:00 2001 From: Evgeniy Stratonikov Date: Tue, 9 Mar 2021 13:17:51 +0300 Subject: [PATCH] core/tests: print hash of the genesis block --- pkg/core/helper_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/core/helper_test.go b/pkg/core/helper_test.go index 40b64f9b5..389a1378b 100644 --- a/pkg/core/helper_test.go +++ b/pkg/core/helper_test.go @@ -304,6 +304,7 @@ func initBasicChain(t *testing.T, bc *Blockchain) { t.Logf("native NEO hash: %v", neoHash) t.Logf("native Policy hash: %v", policyHash) t.Logf("native Notary hash: %v", notaryHash) + t.Logf("Block0 hash: %s", bc.GetHeaderHash(0).StringLE()) priv0 := testchain.PrivateKeyByID(0) priv0ScriptHash := priv0.GetScriptHash()