Skip to content

Commit 24b8939

Browse files
committed
1.6.0 stable
1 parent 8aa415f commit 24b8939

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

params/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ var (
6262
var (
6363
MainnetTrustedCheckpoint = &TrustedCheckpoint{
6464
Name: "mainnet",
65-
SectionIndex: 7,
66-
SectionHead: common.HexToHash("0x12e4021880e10e710b24801390d995f7c8d6d62bb0e572ac3cfdedc50b4548b2"),
65+
SectionIndex: 8,
66+
SectionHead: common.HexToHash("0x68a62a559d68a45189a397f1f850a7407b41f3452f036dd43e17215019576cb8"),
6767
}
6868
//0x78c5f644c046fb0ea544b50a898ca5d2a926c419863853ac8ba22c10fc380fd6
6969
DoloresTrustedCheckpoint = &TrustedCheckpoint{

params/network_params.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const (
2929
BloomConfirms = 256
3030

3131
CHTFrequency = 32768
32+
//section = point - 1
3233
/*Check point:1 32767
3334
Check point:2 65535
3435
Check point:3 98303

params/version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
)
2222

2323
const (
24-
VersionMajor = 1 // Major version component of the current release
25-
VersionMinor = 6 // Minor version component of the current release
26-
VersionPatch = 0 // Patch version component of the current release
27-
VersionMeta = "unstable" // Version metadata to append to the version string
24+
VersionMajor = 1 // Major version component of the current release
25+
VersionMinor = 6 // Minor version component of the current release
26+
VersionPatch = 0 // Patch version component of the current release
27+
VersionMeta = "stable" // Version metadata to append to the version string
2828
)
2929

3030
// Version holds the textual version string.

0 commit comments

Comments
 (0)