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.
1 parent 58f27b3 commit 653e4feCopy full SHA for 653e4fe
crates/bdk/src/wallet/mod.rs
@@ -2565,6 +2565,7 @@ impl Wallet {
2565
/// start a blockchain sync with a spk based blockchain client.
2566
pub fn start_sync_with_revealed_spks(&self) -> SyncRequest {
2567
SyncRequest::from_chain_tip(self.chain.tip())
2568
+ .cache_graph_txs(self.tx_graph())
2569
.populate_with_revealed_spks(&self.indexed_graph.index, ..)
2570
}
2571
@@ -2578,6 +2579,7 @@ impl Wallet {
2578
2579
/// in which the list of used scripts is not known.
2580
pub fn start_full_scan(&self) -> FullScanRequest<KeychainKind> {
2581
FullScanRequest::from_keychain_txout_index(self.chain.tip(), &self.indexed_graph.index)
2582
2583
2584
2585
0 commit comments