Skip to content

Commit

Permalink
Darkcoin masternode payments have been changed from 10% to 20%
Browse files Browse the repository at this point in the history
  • Loading branch information
darkcoinproject committed Jun 7, 2014
1 parent a7953f7 commit c371039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ var generateOutputTransactions = function(poolRecipient, recipients, rpcData){


if (rpcData.payee) {
var payeeReward = Math.ceil(reward / 10);
var payeeReward = Math.ceil(reward / 5);

reward -= payeeReward;
rewardToPool -= payeeReward;
Expand Down Expand Up @@ -242,4 +242,4 @@ exports.CreateGeneration = function(rpcData, publicKey, extraNoncePlaceholder, r

return [p1, p2];

};
};

0 comments on commit c371039

Please sign in to comment.