@@ -742,7 +742,7 @@ static void CheckAddCoinBase(CAmount base_value, CAmount cache_value, CAmount mo
742
742
template <typename ... Args>
743
743
static void CheckAddCoin (Args&&... args)
744
744
{
745
- for (const CAmount base_value : {ABSENT, SPENT , VALUE1})
745
+ for (const CAmount base_value : {ABSENT, SPENT, VALUE1})
746
746
CheckAddCoinBase (base_value, std::forward<Args>(args)...);
747
747
}
748
748
@@ -854,8 +854,8 @@ BOOST_AUTO_TEST_CASE(ccoins_write)
854
854
// they would be too repetitive (the parent cache is never updated in these
855
855
// cases). The loop below covers these cases and makes sure the parent cache
856
856
// is always left unchanged.
857
- for (const CAmount parent_value : {ABSENT, SPENT , VALUE1})
858
- for (const CAmount child_value : {ABSENT, SPENT , VALUE2})
857
+ for (const CAmount parent_value : {ABSENT, SPENT, VALUE1})
858
+ for (const CAmount child_value : {ABSENT, SPENT, VALUE2})
859
859
for (const char parent_flags : parent_value == ABSENT ? ABSENT_FLAGS : FLAGS)
860
860
for (const char child_flags : child_value == ABSENT ? ABSENT_FLAGS : CLEAN_FLAGS)
861
861
CheckWriteCoins (parent_value, child_value, parent_value, parent_flags, child_flags, parent_flags);
0 commit comments