From d7b1ae8407a7eaad4caa739561367f88b6724187 Mon Sep 17 00:00:00 2001 From: Nikolas Haimerl Date: Mon, 28 Aug 2023 07:34:49 +0000 Subject: [PATCH] clippy --- depositor/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/depositor/src/main.rs b/depositor/src/main.rs index a7febc2..366c008 100644 --- a/depositor/src/main.rs +++ b/depositor/src/main.rs @@ -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 }