move window

This commit is contained in:
Cassandra Heart 2024-10-25 14:44:23 -05:00
parent fe5ed13588
commit b36bab321f
No known key found for this signature in database
GPG Key ID: 6352152859385958
2 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ func (e *DataClockConsensusEngine) handleMint(
t.Proofs[0],
[]byte("pre-dusk"),
) && (!bytes.Equal(t.Proofs[1], make([]byte, 32)) ||
head.FrameNumber < 60480) && e.GetFrameProverTries()[0].Contains(
head.FrameNumber < 67000) && e.GetFrameProverTries()[0].Contains(
e.provingKeyAddress,
) {
prevInput := []byte{}

View File

@ -115,7 +115,7 @@ func (a *TokenApplication) handleMint(
},
}
return outputs, nil
} else if len(t.Proofs) != 3 && currentFrameNumber > 60480 {
} else if len(t.Proofs) != 3 && currentFrameNumber > 77000 {
if _, touched := lockMap[string(t.Signature.PublicKey.KeyValue)]; touched {
return nil, errors.Wrap(ErrInvalidStateTransition, "handle mint")
}