diff --git a/src/wallet/mod.rs b/src/wallet/mod.rs index bf7993d4..8c3c968b 100644 --- a/src/wallet/mod.rs +++ b/src/wallet/mod.rs @@ -1537,23 +1537,6 @@ where .sync(self.database.borrow_mut().deref_mut(), progress_update,))?; } - #[cfg(feature = "verify")] - { - debug!("Verifying transactions..."); - for mut tx in self.database.borrow().iter_txs(true)? { - if !tx.verified { - verify::verify_tx( - tx.transaction.as_ref().ok_or(Error::TransactionNotFound)?, - self.database.borrow().deref(), - &self.client, - )?; - - tx.verified = true; - self.database.borrow_mut().set_tx(&tx)?; - } - } - } - let sync_time = SyncTime { block_time: BlockTime { height: maybe_await!(self.client.get_height())?,