We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f749a commit ddac6ceCopy full SHA for ddac6ce
src/masternode-budget.h
@@ -482,6 +482,7 @@ class CFinalizedBudget
482
READWRITE(vecBudgetPayments);
483
READWRITE(fAutoChecked);
484
READWRITE(mapVotes);
485
+ READWRITE(strProposals);
486
}
487
488
// compare finalized budget by votes (sort tie with feeHash)
@@ -510,6 +511,7 @@ class CFinalizedBudgetBroadcast : public CFinalizedBudget
510
511
first.vecBudgetPayments.swap(second.vecBudgetPayments);
512
swap(first.nFeeTXHash, second.nFeeTXHash);
513
swap(first.nTime, second.nTime);
514
+ swap(first.strProposals, second.strProposals);
515
516
517
CFinalizedBudgetBroadcast& operator=(CFinalizedBudgetBroadcast from)
0 commit comments