Skip to content

Commit

Permalink
walletdb: Remove unsed boost/thread
Browse files Browse the repository at this point in the history
Cherry-picked from: fa7b885
  • Loading branch information
MarcoFalke authored and xanimo committed Apr 3, 2024
1 parent 19ee94f commit c40cc5e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/wallet/walletdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,6 @@ DBErrors CWalletDB::LoadWallet(CWallet* pwallet)
}
pcursor->close();
}
catch (const boost::thread_interrupted&) {
throw;
}
catch (...) {
result = DB_CORRUPT;
}
Expand Down Expand Up @@ -710,9 +707,6 @@ DBErrors CWalletDB::FindWalletTx(CWallet* pwallet, vector<uint256>& vTxHash, vec
}
pcursor->close();
}
catch (const boost::thread_interrupted&) {
throw;
}
catch (...) {
result = DB_CORRUPT;
}
Expand Down

0 comments on commit c40cc5e

Please sign in to comment.