Replace BOOST_FOREACH with for..:

Co-authored-by: str4d <thestr4d@gmail.com>
This commit is contained in:
Kris Nuttycombe 2020-07-01 16:05:30 -06:00 committed by GitHub
parent 92cec200ee
commit bf381ad580
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ TEST(FundingStreamsRewardTest, Zip207Distribution) {
auto shares = GetActiveFundingStreamShares(nHeight, blockSubsidy, consensus);
CAmount totalFunding = 0;
BOOST_FOREACH(Consensus::FundingStreamShare share, shares) {
for (Consensus::FundingStreamShare share : shares) {
totalFunding += share.second;
}
EXPECT_EQ(totalFunding, blockSubsidy / 5);