Skip to content

Commit

Permalink
build: remove boost foreach in db.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
xanimo committed Apr 21, 2024
1 parent e7891a7 commit 1d2f795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ bool CDB::Recover(const std::string& filename, void *callbackDataIn, bool (*reco
}

DbTxn* ptxn = bitdb.TxnBegin();
BOOST_FOREACH(CDBEnv::KeyValPair& row, salvagedData)
for (CDBEnv::KeyValPair& row : salvagedData)
{
if (recoverKVcallback)
{
Expand Down

0 comments on commit 1d2f795

Please sign in to comment.