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 fd576d6 commit 077ea56Copy full SHA for 077ea56
crates/bdk/src/wallet/mod.rs
@@ -2419,6 +2419,7 @@ impl Wallet {
2419
/// start a blockchain sync with a spk based blockchain client.
2420
pub fn start_sync_with_revealed_spks(&self) -> SyncRequest {
2421
SyncRequest::from_chain_tip(self.chain.tip())
2422
+ .cache_graph_txs(self.tx_graph())
2423
.populate_with_revealed_spks(&self.indexed_graph.index, ..)
2424
}
2425
@@ -2432,6 +2433,7 @@ impl Wallet {
2432
2433
/// in which the list of used scripts is not known.
2434
pub fn start_full_scan(&self) -> FullScanRequest<KeychainKind> {
2435
FullScanRequest::from_keychain_txout_index(self.chain.tip(), &self.indexed_graph.index)
2436
2437
2438
2439
0 commit comments