You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: internal/params/config.go
+9
Original file line number
Diff line number
Diff line change
@@ -323,6 +323,7 @@ var (
323
323
MaxRateEpoch: EpochTBD,
324
324
DevnetExternalEpoch: EpochTBD,
325
325
TestnetExternalEpoch: EpochTBD,
326
+
IsOneSecondEpoch: big.NewInt(4),
326
327
}
327
328
328
329
// AllProtocolChanges ...
@@ -374,6 +375,7 @@ var (
374
375
big.NewInt(0),
375
376
big.NewInt(0),
376
377
big.NewInt(0),
378
+
big.NewInt(0),
377
379
}
378
380
379
381
// TestChainConfig ...
@@ -425,6 +427,7 @@ var (
425
427
big.NewInt(0), // MaxRateEpoch
426
428
big.NewInt(0),
427
429
big.NewInt(0),
430
+
big.NewInt(0),
428
431
}
429
432
430
433
// TestRules ...
@@ -606,6 +609,8 @@ type ChainConfig struct {
606
609
// vote power feature https://github.com/harmony-one/harmony/pull/4683
607
610
// if crosslink are not sent for an entire epoch signed and toSign will be 0 and 0. when that happen, next epoch there will no shard 1 validator elected in the committee.
0 commit comments