Skip to content

Commit

Permalink
Remove todo!()
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph committed Mar 1, 2025
1 parent b9462b8 commit 7f437b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ impl Wallet {
}

pub(crate) fn utxos(&self) -> &BTreeMap<OutPoint, TxOut> {
todo!()
unimplemented!()
}

pub(crate) fn locked_utxos(&self) -> &BTreeMap<OutPoint, TxOut> {
todo!()
unimplemented!()
}

pub(crate) fn lock_non_cardinal_outputs(&self) -> Result {
Expand Down Expand Up @@ -244,15 +244,15 @@ impl Wallet {
}

pub(crate) fn inscriptions(&self) -> &BTreeMap<SatPoint, Vec<InscriptionId>> {
todo!();
unimplemented!();
}

pub(crate) fn inscription_info(&self) -> BTreeMap<InscriptionId, api::Inscription> {
todo!();
unimplemented!();
}

pub(crate) fn output_info(&self) -> BTreeMap<OutPoint, api::Output> {
todo!();
unimplemented!();
}

pub(crate) fn get_inscription(
Expand Down
10 changes: 5 additions & 5 deletions src/wallet/wallet_constructor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
})
}

Expand Down

0 comments on commit 7f437b4

Please sign in to comment.