Fixed bad total for GENX pre-masternode code (#38)

This commit is contained in:
Loki Taljaard 2019-03-18 10:34:49 -05:00 committed by Beshoy Girgis
parent e80116c298
commit 9b24a76010
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ var BlockTemplate = module.exports = function BlockTemplate(
"infrastructure": (this.rpcData.infrastructure),
"giveaways": (this.rpcData.giveaways),
"founderSplit": (this.rpcData.loki),
"total": (this.rpcData.miner + this.rpcData.founders + this.rpcData.infrastructure + this.rpcData.giveaways)
"total": (this.rpcData.miner + this.rpcData.founderstotal + this.rpcData.infrastructure + this.rpcData.giveaways)
};
//console.log(`SafeCash: ${this.rpcData.miner}`);
}