(&self, checksum: &Checksum)
| 506 | } |
| 507 | |
| 508 | pub fn find_wallet_gap(&self, checksum: &Checksum) -> Option<usize> { |
| 509 | let indexer = self.indexer.read().unwrap(); |
| 510 | let wallet = indexer.watcher().get(checksum)?; |
| 511 | wallet.find_gap(indexer.store()) |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | // Attach descriptor and bip32 origin information when available |