Skip to content

Commit

Permalink
Merge branch 'cancel-api' into bonsai-cancel
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 authored Jul 17, 2024
2 parents 39ed4a6 + c083202 commit b84d0ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/src/adv_sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ impl TaskDb {
statement.execute(named_params! {
":chain_id": chain_id,
":blockhash": blockhash.to_vec(),
":proofsys_id": proof_key as u8,
":proofsys_id": proof_key,
":id": id,
})?;

Expand All @@ -799,7 +799,7 @@ impl TaskDb {
statement.execute(named_params! {
":chain_id": chain_id,
":blockhash": blockhash.to_vec(),
":proofsys_id": proof_key as u8,
":proofsys_id": proof_key,
})?;

Ok(())
Expand All @@ -824,7 +824,7 @@ impl TaskDb {
named_params! {
":chain_id": chain_id,
":blockhash": blockhash.to_vec(),
":proofsys_id": proof_key as u8,
":proofsys_id": proof_key,
},
|row| row.get::<_, String>(0),
)?;
Expand Down

0 comments on commit b84d0ca

Please sign in to comment.