Skip to content

Commit bee9d97

Browse files
authored
Merge pull request #5 from cryptoecc/Annapurna
Update Annapurna block
2 parents 117ac05 + 04bc26e commit bee9d97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

params/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ var (
292292
LondonBlock: big.NewInt(0),
293293
WorldlandBlock: big.NewInt(0),
294294
SeoulBlock: big.NewInt(0),
295-
AnnapurnaBlock: big.NewInt(2_456_000),
295+
AnnapurnaBlock: big.NewInt(2_520_000),
296296
HalvingEndTime: big.NewInt(25228800),
297297
Eccpow: new(EccpowConfig),
298298
}
@@ -642,12 +642,12 @@ func (c *ChainConfig) String() string {
642642
}
643643
if c.SeoulBlock != nil {
644644
banner += fmt.Sprintf(" - Seoul: %-8v\n", c.SeoulBlock)
645-
}
645+
}*/
646646
if c.AnnapurnaBlock != nil {
647647
banner += fmt.Sprintf(" - Annapurna: %-8v\n", c.AnnapurnaBlock)
648648
}
649649
banner += "\n"
650-
*/
650+
651651
// Add a special section for the merge as it's non-obvious
652652
/*if c.TerminalTotalDifficulty == nil {
653653
banner += "The Merge is not yet available for this network!\n"

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
const (
2424
VersionMajor = 1 // Major version component of the current release
2525
VersionMinor = 1 // Minor version component of the current release
26-
VersionPatch = 1 // Patch version component of the current release
26+
VersionPatch = 2 // Patch version component of the current release
2727
VersionMeta = "unstable" // Version metadata to append to the version string
2828
)
2929

0 commit comments

Comments
 (0)