Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ailisp committed Oct 9, 2024
1 parent 07f2d30 commit e2cb49f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/chain-signatures/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ pub async fn dry_host(
.collect::<Result<Vec<_>, _>>()?;
let mut node_cfgs = Vec::new();
for account in accounts.iter().take(cfg.nodes) {
node_cfgs.push(local::Node::dry_run(&ctx, &account, &cfg).await?);
node_cfgs.push(local::Node::dry_run(&ctx, account, &cfg).await?);
}

let candidates: HashMap<AccountId, CandidateInfo> = accounts
Expand Down Expand Up @@ -347,8 +347,8 @@ pub async fn dry_host(
ctx.mpc_contract.id(),
args,
ctx.mpc_contract.id(),
sk.public_key().to_string(),
sk.to_string()
sk.public_key(),
sk
);
println!();

Expand Down

0 comments on commit e2cb49f

Please sign in to comment.