From 81449bcfcd71ac979b0a0286ec48a2272362ab59 Mon Sep 17 00:00:00 2001 From: lucretius Date: Wed, 24 Jan 2024 07:07:39 +0100 Subject: [PATCH] copy pasta is bad, fixed superfluous , --- lib/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/commands.rs b/lib/src/commands.rs index 5127803..66f43be 100644 --- a/lib/src/commands.rs +++ b/lib/src/commands.rs @@ -563,7 +563,7 @@ impl Command for SendCommand { } } // Execute the transaction and handle the result. - match lightclient.do_send(tos, &selected_fee,) { + match lightclient.do_send(tos, &selected_fee) { Ok(txid) => object!{ "txid" => txid }.pretty(2), Err(e) => object!{ "error" => e }.pretty(2), }