diff --git a/pkg/core/util_test.go b/pkg/core/util_test.go index 267e04fa2..dae606d64 100644 --- a/pkg/core/util_test.go +++ b/pkg/core/util_test.go @@ -17,10 +17,6 @@ func TestGenesisBlockMainNet(t *testing.T) { block, err := createGenesisBlock(cfg.ProtocolConfiguration) require.NoError(t, err) - //TODO: After we added Nonce field to transaction.Transaction, goveringTockenTx and UtilityTockenTx hashes - // have been changed. Consequently, hash of the genesis block has been changed. - // Update expected genesis block hash for better times. - // Old hash is "d42561e3d30e15be6400b6df2f328e02d2bf6354c41dce433bc57687c82144bf" expect := "ecaee33262f1bc7c7c28f2b25b54a5d61d50670871f45c0c6fe755a40cbde4a8" assert.Equal(t, expect, block.Hash().StringLE()) }