Fixed bad total for GENX pre-masternode code (#38)
This commit is contained in:
parent
e80116c298
commit
9b24a76010
|
@ -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}`);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue