Skip to content

Commit fa1c74f

Browse files
author
MarcoFalke
committed
wallet: Remove unused boost::thread_interrupted
FindWalletTx is only called by zapwallet, which is never called in a boost::thread
1 parent fa7b885 commit fa1c74f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/wallet/walletdb.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -874,11 +874,7 @@ DBErrors WalletBatch::FindWalletTx(std::vector<uint256>& vTxHash, std::list<CWal
874874
}
875875
}
876876
pcursor->close();
877-
}
878-
catch (const boost::thread_interrupted&) {
879-
throw;
880-
}
881-
catch (...) {
877+
} catch (...) {
882878
result = DBErrors::CORRUPT;
883879
}
884880

0 commit comments

Comments
 (0)