Commit dfd4039 1 parent 2ba5ea3 commit dfd4039 Copy full SHA for dfd4039
File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 39
39
ScrollMainnetGenesisHash = common .HexToHash ("0xbbc05efd412b7cd47a2ed0e5ddfcf87af251e414ea4c801d78b6784513180a80" )
40
40
)
41
41
42
+ func newUint64 (val uint64 ) * uint64 { return & val }
43
+
42
44
// TrustedCheckpoints associates each known checkpoint with the genesis hash of
43
45
// the chain it belongs to.
44
46
var TrustedCheckpoints = map [common.Hash ]* TrustedCheckpoint {
@@ -320,7 +322,7 @@ var (
320
322
ShanghaiBlock : big .NewInt (0 ),
321
323
BernoulliBlock : big .NewInt (3747132 ),
322
324
CurieBlock : big .NewInt (4740239 ),
323
- DarwinTime : nil ,
325
+ DarwinTime : newUint64 ( 1723622400 ) ,
324
326
Clique : & CliqueConfig {
325
327
Period : 3 ,
326
328
Epoch : 30000 ,
@@ -359,7 +361,7 @@ var (
359
361
ShanghaiBlock : big .NewInt (0 ),
360
362
BernoulliBlock : big .NewInt (5220340 ),
361
363
CurieBlock : big .NewInt (7096836 ),
362
- DarwinTime : nil ,
364
+ DarwinTime : newUint64 ( 1724227200 ) ,
363
365
Clique : & CliqueConfig {
364
366
Period : 3 ,
365
367
Epoch : 30000 ,
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import (
23
23
24
24
const (
25
25
VersionMajor = 5 // Major version component of the current release
26
- VersionMinor = 5 // Minor version component of the current release
27
- VersionPatch = 22 // Patch version component of the current release
26
+ VersionMinor = 6 // Minor version component of the current release
27
+ VersionPatch = 0 // Patch version component of the current release
28
28
VersionMeta = "mainnet" // Version metadata to append to the version string
29
29
)
30
30
You can’t perform that action at this time.
0 commit comments