Skip to content

Commit

Permalink
fixup.
Browse files Browse the repository at this point in the history
  • Loading branch information
AureliaDolo committed Jan 9, 2025
1 parent 5f75424 commit e1549f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions cli/src/commands/invite/greet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,8 @@ pub async fn device_greet(args: Args, client: &StartedClient) -> anyhow::Result<
let ctx = step4_device(ctx).await?;
step5_device(ctx).await
}
InviteListItem::ShamirRecovery {
token,
claimer_user_id,
..
} => {
let ctx = client
.start_shamir_recovery_invitation_greet(token, claimer_user_id)
.await?;
InviteListItem::ShamirRecovery { token, .. } => {
let ctx = client.start_shamir_recovery_invitation_greet(token).await?;

let ctx = step1_shamir(ctx).await?;
let ctx = step2_shamir(ctx).await?;
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/integration/invitations/shared_recovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async fn invite_shared_recovery_dance(tmp_path: TmpPath) {
.fold(program_claimer, |acc, s| format!("{acc} {s:?}"));

let p_claimer = Arc::new(Mutex::new(
spawn(&dbg!(program_claimer), Some(1000)).unwrap(),
spawn(&dbg!(program_claimer), Some(10_000)).unwrap(),
));

// retrieve greeter code
Expand Down

0 comments on commit e1549f8

Please sign in to comment.