wallet: Remove unused boost::thread_interrupted

FindWalletTx is only called by zapwallet, which is never called in a
boost::thread
This commit is contained in:
MarcoFalke
2020-06-02 07:14:04 -04:00
parent fa7b885f51
commit fa1c74fd03

View File

@@ -874,11 +874,7 @@ DBErrors WalletBatch::FindWalletTx(std::vector<uint256>& vTxHash, std::list<CWal
}
}
pcursor->close();
}
catch (const boost::thread_interrupted&) {
throw;
}
catch (...) {
} catch (...) {
result = DBErrors::CORRUPT;
}