File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
aggregation_mode/proof_aggregator/src/backend Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ impl Db {
2525
2626 pub async fn get_pending_tasks_and_mark_them_as_processing (
2727 & self ,
28- proving_system_id : i64 ,
28+ proving_system_id : i32 ,
2929 limit : i64 ,
3030 ) -> Result < Vec < Task > , DbError > {
3131 sqlx:: query_as :: < _ , Task > (
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl ProofsFetcher {
3030 ) -> Result < ( Vec < AlignedProof > , Vec < Uuid > ) , ProofsFetcherError > {
3131 let tasks = self
3232 . db
33- . get_pending_tasks_and_mark_them_as_processing ( engine. proving_system_id ( ) as i64 , limit)
33+ . get_pending_tasks_and_mark_them_as_processing ( engine. proving_system_id ( ) as i32 , limit)
3434 . await
3535 . map_err ( ProofsFetcherError :: Query ) ?;
3636
You can’t perform that action at this time.
0 commit comments