1
0
Fork 0
forked from lthn/blockchain

test commit

This commit is contained in:
sowle 2020-02-28 13:17:20 +03:00
parent f8d5442cc1
commit 5a219d15a0
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -645,7 +645,7 @@ bool blockchain_storage::purge_transaction_keyimages_from_blockchain(const trans
}
};
BOOST_FOREACH(const txin_v& in, tx.vin)
for(const txin_v& in : tx.vin)
{
bool r = boost::apply_visitor(purge_transaction_visitor(*this, m_db_spent_keys, strict_check), in);
CHECK_AND_ASSERT_MES(!strict_check || r, false, "failed to process purge_transaction_visitor");