This repository was archived by the owner on Feb 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ const (
1717 FORKID_ETROG = 7
1818 // FORKID_ELDERBERRY is the fork id 8
1919 FORKID_ELDERBERRY = 8
20+ // FORKID_9 is the fork id 9
21+ FORKID_9 = 9
2022)
2123
2224// ForkIDInterval is a fork id interval
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ const (
1212 ForkIDEtrog = ForkIdType (7 ) //nolint:gomnd
1313 // ForkIDElderberry is the forkId for Elderberry
1414 ForkIDElderberry = ForkIdType (8 ) //nolint:gomnd
15+ // ForkID9 is the forkId for 9
16+ ForkID9 = ForkIdType (9 ) //nolint:gomnd
1517)
1618
1719var (
2022 ForksIdAll = []ForkIdType {WildcardForkId }
2123
2224 // ForksIdOnlyElderberry support only elderberry forkId
23- ForksIdOnlyElderberry = []ForkIdType {ForkIDElderberry }
25+ ForksIdOnlyElderberry = []ForkIdType {ForkIDElderberry , ForkID9 }
2426
2527 // ForksIdOnlyEtrog support only etrog forkId
2628 ForksIdOnlyEtrog = []ForkIdType {ForkIDEtrog }
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ func NewSynchronizer(
128128 res .syncTrustedStateExecutor = l2_shared .NewSyncTrustedStateExecutorSelector (map [uint64 ]syncinterfaces.SyncTrustedStateExecutor {
129129 uint64 (state .FORKID_ETROG ): syncTrustedStateEtrog ,
130130 uint64 (state .FORKID_ELDERBERRY ): syncTrustedStateEtrog ,
131+ uint64 (state .FORKID_9 ): syncTrustedStateEtrog ,
131132 }, res .state )
132133 }
133134 var l1checkerL2Blocks * actions.CheckL2BlockHash
You can’t perform that action at this time.
0 commit comments