mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
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:
parent
fa7b885f51
commit
fa1c74fd03
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue