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(), }) }