Skip to content

Commit 6c6c424

Browse files
committed
bump version to v0.14.0
1 parent 4517d5a commit 6c6c424

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
Semantic Versioning
44

5-
## v0.13 Insomniac Mosquitoes
5+
## v0.14 Armored Pseudoscorpions Sep 26, 2022
6+
7+
Slashing rules enabled, with updated transaction and snapshot encoding.
8+
9+
## v0.13 Insomniac Mosquitoes Aug 26, 2021
610

711
Upgrades the storage format, and optimizes memory usage.
812

config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
const (
1212
Debug = true
13-
BuildVersion = "v0.13.16-BUILD_VERSION"
13+
BuildVersion = "v0.14.0-BUILD_VERSION"
1414

1515
MainnetId = "6430225c42bb015b4da03102fa962e4f4ef3969e03e04345db229f8377ef7997"
1616

rpc/consensus_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ func testConsensus(t *testing.T, snapVersionMint int) {
111111
assert.Equal(transactionsCount, len(tl))
112112
assert.Equal(transactionsCount, len(sl))
113113
gt := testVerifyInfo(assert, nodes)
114-
assert.Truef(gt.Timestamp.Before(epoch.Add(1*time.Second)), "%s should before %s", gt.Timestamp, epoch.Add(1*time.Second))
114+
assert.Truef(gt.Timestamp.Before(epoch.Add(7*time.Second)), "%s should before %s", gt.Timestamp, epoch.Add(7*time.Second))
115115

116116
genesisAmount := 10003.5 / float64(INPUTS)
117117
domainAddress := accounts[0].String()

0 commit comments

Comments
 (0)