Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolasHaimerl committed Aug 28, 2023
1 parent 7e28c7f commit d7b1ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion depositor/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ async fn deposit(arg: DepositArg) -> DepositResult {
};
let (result,): (DepositResult,) = call_with_payment128(ledger_id, "deposit", (arg,), cycles)
.await
.expect(&format!("Unable to call deposit with {}", cycles));
.expect("Unable to call deposit");
result
}

0 comments on commit d7b1ae8

Please sign in to comment.