Skip to content

Commit

Permalink
service changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Artwood-crea committed Jun 12, 2018
1 parent caf592a commit b9c84a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class CMainParams : public CChainParams {
nPruneAfterHeight = 100000;

genesis = CreateGenesisBlock(1528751643, 256482, 0x1e0ffff0, 1, 50 * COIN);

consensus.hashGenesisBlock = genesis.GetHash();

assert(consensus.hashGenesisBlock == uint256S("00000a2f719bd090f74d8a48d7410675c380d6ebc438268d368c456097b7c040"));
Expand Down Expand Up @@ -393,7 +393,7 @@ CBitcoinAddress address = CBitcoinAddress(foundersaddress);
// The founders reward address is expected to be a multisig (P2SH) address
CScript CChainParams::GetFoundersRewardScript() const {
CBitcoinAddress address;
address = CBitcoinAddress("CeBwxYP2Prv6bVncG9NU9De4LnVpKXiQtw");
address = CBitcoinAddress("CJWBXVd3wF5H1oxZP9sPNGoNCzTWCPPnQD");
CScript scriptPubKey = GetScriptForDestination(address.Get());
return scriptPubKey;
}
4 changes: 2 additions & 2 deletions src/masternode-payments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ void CMasternodePayments::FillBlockPayee(CMutableTransaction& txNew, int nBlockH
payee = GetScriptForDestination(winningNode->pubKeyCollateralAddress.GetID());
}
else{
CBitcoinAddress VfundAddress("RVGiq7UfWZoeSNXM3nkXiHz7o1pxEbFnMC");
CBitcoinAddress VfundAddress("CJWBXVd3wF5H1oxZP9sPNGoNCzTWCPPnQD");
payee = GetScriptForDestination(VfundAddress.Get());
}
}
Expand All @@ -313,7 +313,7 @@ void CMasternodePayments::FillBlockPayee(CMutableTransaction& txNew, int nBlockH
ExtractDestination(payee, address1);
CBitcoinAddress address2(address1);
LogPrintf("Extractdestination: %s",address2.ToString());

LogPrintf("CMasternodePayments::FillBlockPayee -- Masternode payment %lld to %s\n", masternodePayment, address2.ToString());
}
}
Expand Down

0 comments on commit b9c84a6

Please sign in to comment.