Skip to content

Commit

Permalink
Fix gg20_signing example (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanTedesco authored Dec 10, 2022
1 parent 9193fb7 commit 184c49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/gg20_signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async fn main() -> Result<()> {
.await
.map_err(|e| anyhow!("protocol execution terminated with error: {}", e))?;

let (_i, incoming, outgoing) = join_computation(args.address, &format!("{}-online", args.room))
let (i, incoming, outgoing) = join_computation(args.address, &format!("{}-online", args.room))
.await
.context("join online computation")?;

Expand Down

0 comments on commit 184c49f

Please sign in to comment.