set back for testnet

This commit is contained in:
Cassandra Heart 2024-11-13 06:05:21 -06:00
parent b0a87b2fe4
commit ea1ea1be90
No known key found for this signature in database
GPG Key ID: 6352152859385958
2 changed files with 6 additions and 4 deletions

View File

@ -18,9 +18,10 @@ import (
"source.quilibrium.com/quilibrium/monorepo/node/tries"
)
const PROOF_FRAME_CUTOFF = 46500
const PROOF_FRAME_RING_RESET = 52000
const PROOF_FRAME_RING_RESET_2 = 53028
const PROOF_FRAME_CUTOFF = 1
const PROOF_FRAME_RING_RESET = 5750
const PROOF_FRAME_RING_RESET_2 = 7650
const PROOF_FRAME_RING_RESET_3 = 13369
func (a *TokenApplication) handleMint(
currentFrameNumber uint64,

View File

@ -899,7 +899,8 @@ func (e *TokenExecutionEngine) ProcessFrame(
}
if frame.FrameNumber == application.PROOF_FRAME_RING_RESET ||
frame.FrameNumber == application.PROOF_FRAME_RING_RESET_2 {
frame.FrameNumber == application.PROOF_FRAME_RING_RESET_2 ||
frame.FrameNumber == application.PROOF_FRAME_RING_RESET_3 {
e.logger.Info("performing ring reset")
seniorityMap, err := RebuildPeerSeniority(e.pubSub.GetNetwork())
if err != nil {