From 9850a728d47e689d899f7d970bb59e44cd793047 Mon Sep 17 00:00:00 2001 From: "James C. Owens" Date: Thu, 28 Apr 2022 16:32:44 -0400 Subject: [PATCH] Correct commentary in SplitCoinStakeOutput --- src/miner.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/miner.cpp b/src/miner.cpp index 310481ceb7..e62cfc191d 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -1048,11 +1048,11 @@ void SplitCoinStakeOutput(CBlock &blocknew, int64_t &nReward, bool &fEnableStake // [MRC 1], ..., [MRC p]. // // Currently according to the output limit rules encoded in CreateMRC and here: - // For block version 10: + // For block version 10-11: // one empty, m <= 6, m + n <= 7, and p = 0. // - // For block version 11 and above: - // one empty, m <= 6, m + n <= 7, and p <= 5. + // For block version 12: + // one empty, m <= 6, m + n <= 10, and p <= 10. // The total generated GRC is the total of the reward splits - the fees (the original GridcoinReward which is the // research reward + CBR), plus the total of the MRC outputs 2 to p (these outputs already have the fees subtracted)