diff --git a/CHANGELOG.md b/CHANGELOG.md index 89e33c861..80000fd70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ Semantic Versioning -## v0.13 Insomniac Mosquitoes +## v0.14 Armored Pseudoscorpions Sep 26, 2022 + +Slashing rules enabled, with updated transaction and snapshot encoding. + +## v0.13 Insomniac Mosquitoes Aug 26, 2021 Upgrades the storage format, and optimizes memory usage. diff --git a/config/config.go b/config/config.go index 85496e090..f0e4a2859 100644 --- a/config/config.go +++ b/config/config.go @@ -10,7 +10,7 @@ import ( const ( Debug = true - BuildVersion = "v0.13.16-BUILD_VERSION" + BuildVersion = "v0.14.0-BUILD_VERSION" MainnetId = "6430225c42bb015b4da03102fa962e4f4ef3969e03e04345db229f8377ef7997" diff --git a/rpc/consensus_test.go b/rpc/consensus_test.go index 021c3d801..77fdea6f1 100644 --- a/rpc/consensus_test.go +++ b/rpc/consensus_test.go @@ -111,7 +111,7 @@ func testConsensus(t *testing.T, snapVersionMint int) { assert.Equal(transactionsCount, len(tl)) assert.Equal(transactionsCount, len(sl)) gt := testVerifyInfo(assert, nodes) - assert.Truef(gt.Timestamp.Before(epoch.Add(1*time.Second)), "%s should before %s", gt.Timestamp, epoch.Add(1*time.Second)) + assert.Truef(gt.Timestamp.Before(epoch.Add(7*time.Second)), "%s should before %s", gt.Timestamp, epoch.Add(7*time.Second)) genesisAmount := 10003.5 / float64(INPUTS) domainAddress := accounts[0].String()