From 7f437b4053a8178ef549ff5e1b3ba256cc7fb712 Mon Sep 17 00:00:00 2001 From: raphjaph Date: Sat, 1 Mar 2025 21:22:59 +0100 Subject: [PATCH] Remove todo!() --- src/wallet.rs | 10 +++++----- src/wallet/wallet_constructor.rs | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/wallet.rs b/src/wallet.rs index 6c3049e6f4..8176636671 100644 --- a/src/wallet.rs +++ b/src/wallet.rs @@ -207,11 +207,11 @@ impl Wallet { } pub(crate) fn utxos(&self) -> &BTreeMap { - todo!() + unimplemented!() } pub(crate) fn locked_utxos(&self) -> &BTreeMap { - todo!() + unimplemented!() } pub(crate) fn lock_non_cardinal_outputs(&self) -> Result { @@ -244,15 +244,15 @@ impl Wallet { } pub(crate) fn inscriptions(&self) -> &BTreeMap> { - todo!(); + unimplemented!(); } pub(crate) fn inscription_info(&self) -> BTreeMap { - todo!(); + unimplemented!(); } pub(crate) fn output_info(&self) -> BTreeMap { - todo!(); + unimplemented!(); } pub(crate) fn get_inscription( diff --git a/src/wallet/wallet_constructor.rs b/src/wallet/wallet_constructor.rs index 5a5e932cfb..1e8cbf6037 100644 --- a/src/wallet/wallet_constructor.rs +++ b/src/wallet/wallet_constructor.rs @@ -92,11 +92,11 @@ impl WalletConstructor { rpc_url: self.rpc_url, settings: self.settings, wallet, - // inscription_info: BTreeMap::new(), // TODO - // inscriptions: BTreeMap::new(), // TODO - // locked_utxos: BTreeMap::new(), // TODO - // output_info: BTreeMap::new(), // TODO - // utxos: BTreeMap::new(), // TODO + // inscription_info: BTreeMap::new(), + // inscriptions: BTreeMap::new(), + // locked_utxos: BTreeMap::new(), + // output_info: BTreeMap::new(), + // utxos: BTreeMap::new(), }) }