We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Wallet
1 parent 88ea1c7 commit fec49b9Copy full SHA for fec49b9
src/wallet/mod.rs
@@ -554,6 +554,21 @@ where
554
Some(&self.stage)
555
}
556
557
+
558
+ /// Get a reference to the inner [`TxGraph`].
559
+ pub fn tx_graph(&self) -> &TxGraph<ConfirmationBlockTime> {
560
+ self.tx_graph.graph()
561
+ }
562
563
+ /// Get a reference to the inner [`KeychainTxOutIndex`].
564
+ pub fn index(&self) -> &KeychainTxOutIndex<K> {
565
+ &self.tx_graph.index
566
567
568
+ /// Get a reference to the inner [`LocalChain`].
569
+ pub fn local_chain(&self) -> &LocalChain {
570
+ &self.chain
571
572
573
574
// TODO: replace with `PersistedWallet`
0 commit comments