From 04b36248a1b887a6e55ee8be85c38ce5442fb269 Mon Sep 17 00:00:00 2001 From: fitchgc <36850835+fitchgc@users.noreply.github.com> Date: Mon, 24 Oct 2022 05:56:53 +0000 Subject: [PATCH] remove some warning --- src/wallet/wallet_impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet_impl.rs b/src/wallet/wallet_impl.rs index 9aae4a2..34a09e6 100644 --- a/src/wallet/wallet_impl.rs +++ b/src/wallet/wallet_impl.rs @@ -242,6 +242,6 @@ impl Wallet { write!(s, "{:02x}", rv).unwrap(); println!("normal sigx: {:?}", s); - Ok((s)) + Ok(s) } }