Skip to content

Commit

Permalink
return worker with mocked SNOS
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Feb 20, 2025
1 parent 2b1ff0a commit a5f38ef
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions saya/core/src/prover/atlantic/snos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ where
proof: P::parse(serde_json::to_string(&mock_proof).unwrap()).unwrap(),
};

let _ = task_tx.send(new_proof).await;

continue;
let _ = task_tx.send(new_proof);
return;
}

trace!("Compressing PIE for block #{}", new_block.number);
Expand Down

0 comments on commit a5f38ef

Please sign in to comment.