v1.27.0-a #10

Closed
jonathanface wants to merge 473 commits from v1.27.0-a into master
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 2f45646a92 - Show all commits

View File

@ -41,8 +41,6 @@ create table sectors_sdr_pipeline (
-- precommit message wait
seed_epoch bigint,
precommit_msg_tsk bytea,
task_id_precommit_msg_wait bigint,
after_precommit_msg_success bool not null default false,
-- seed

View File

@ -120,6 +120,11 @@ func (s *SubmitPrecommitTask) Do(taskID harmonytask.TaskID, stillOwned func() bo
return false, xerrors.Errorf("updating precommit_msg_cid: %w", err)
}
_, err = s.db.Exec(ctx, `INSERT INTO message_waits (signed_message_cid) VALUES ($1)`, mcid)
if err != nil {
return false, xerrors.Errorf("inserting into message_waits: %w", err)
}
return true, nil
}