incl missed staging method call

This commit is contained in:
Cassandra Heart 2025-11-15 01:48:44 -06:00
parent f62a98211c
commit d871f2ea51
No known key found for this signature in database
GPG Key ID: 371083BFA6C240AA

View File

@ -1312,6 +1312,15 @@ func (e *GlobalConsensusEngine) handleProposal(message *pb.Message) {
return
}
if err := e.clockStore.PutGlobalClockFrameCandidate(
proposal.State,
txn,
); err != nil {
e.logger.Error("could not put frame", zap.Error(err))
txn.Abort()
return
}
if err := txn.Commit(); err != nil {
e.logger.Error("could not commit transaction", zap.Error(err))
txn.Abort()