BillyBones
|
|
June 04, 2015, 06:19:24 AM |
|
1-clik masternode...sweet.
I also like the name. Huge hashrate.
Ok I´m in.
|
|
|
|
BlackPanda
Legendary
Offline
Activity: 1414
Merit: 1001
|
|
June 04, 2015, 06:37:33 AM |
|
hey dev , do you have planning for NANAS ? or just Mine > stake > sell > Buy > dead ?
|
|
|
|
iGotSpots
Legendary
Offline
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
|
|
June 04, 2015, 07:22:32 AM Last edit: June 04, 2015, 07:43:46 AM by iGotSpots |
|
To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; }
|
|
|
|
proletariat
Legendary
Offline
Activity: 1246
Merit: 1005
|
|
June 04, 2015, 07:24:03 AM |
|
on the one click setup i get the following message "The local external IP is not yet detected. Please try again in a few minutes."
Dev: help.
|
|
|
|
BillyBones
|
|
June 04, 2015, 07:41:59 AM |
|
To have the parameters as mentioned in the OP, you have an error in the bolded line int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; } It looks like typo in OP.
|
|
|
|
pjcltd
Legendary
Offline
Activity: 1778
Merit: 1003
NodeMasters
|
|
June 04, 2015, 07:44:28 AM |
|
To have the parameters as mentioned in the OP, you have an error in the bolded line int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; } It looks like typo in OP. no its need to be else if(nHeight > 4000)
|
|
|
|
iGotSpots
Legendary
Offline
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
|
|
June 04, 2015, 07:45:46 AM |
|
To have the parameters as mentioned in the OP, you have an error in the bolded line int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; } It looks like typo in OP. no its need to be else if(nHeight > 4000) Correct, or the top bolded line could be changed to whatever the reward should be after block 4000. The whole reward system is sloppy, but those two options will work as a bandaid
|
|
|
|
BillyBones
|
|
June 04, 2015, 07:48:14 AM |
|
Ahh, now i see. You are right guys.... still time to fix.
|
|
|
|
iGotSpots
Legendary
Offline
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
|
|
June 04, 2015, 07:49:44 AM |
|
Ahh, now i see. You are right guys.... still time to fix.
Correct. We liked the name and were reviewing the code to add it to GorillaEx, but there is an error
|
|
|
|
kampretkabur
|
|
June 04, 2015, 07:51:04 AM |
|
To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; } where can i see this
|
|
|
|
iGotSpots
Legendary
Offline
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
|
|
June 04, 2015, 07:52:24 AM |
|
|
|
|
|
BlackPanda
Legendary
Offline
Activity: 1414
Merit: 1001
|
|
June 04, 2015, 07:53:02 AM |
|
To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; } where can i see this you can see on your heart . relax and you can find it
|
|
|
|
kampretkabur
|
|
June 04, 2015, 07:54:44 AM |
|
To have the parameters as mentioned in the OP, you have an error in one of the two bolded lines int64_t GetProofOfWorkReward(int nHeight, int64_t nFees) { int64_t nSubsidy = 325 * COIN;
if(nHeight < 950) { nSubsidy = 325 * COIN; } else if(nHeight < 1400) { nSubsidy = 225 * COIN; } else if(nHeight < 1900) { nSubsidy = 212 * COIN; } else if(nHeight < 2400) { nSubsidy = 162 * COIN; } else if(nHeight < 2850) { nSubsidy = 126 * COIN; } else if(nHeight < 3500) { nSubsidy = 95 * COIN; } else if(nHeight < 4000) { nSubsidy = 52 * COIN; }
return nSubsidy + nFees; } where can i see this you can see on your heart . relax and you can find it damn, thanks anyway
|
|
|
|
NoobKidOnTheBlock
|
|
June 04, 2015, 10:04:14 AM |
|
Any exchange soon enough?
Thanks
Holy Super Rookie account posting exact same message in the two ninja launched masternode POS coins launched today lmfao EDIT - total sockpuppet account for someone date registered aug 2014 but only 2 posts EVER and they are both in the 2 coins I mentioned lmfao wow
|
▇ ▇▇▇ ▇▇▇▇▇ ▇▇▇▇ ▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇▇ | | ... | ............NoobKidOnThe.BLOCK.....
|
|
|
|
|
max2000irc
|
|
June 04, 2015, 10:07:31 AM |
|
I didn't read other posts , I am interested in buying not in selling , so any offers you may have just pm me.
Thanks
|
|
|
|
NoobKidOnTheBlock
|
|
June 04, 2015, 10:09:26 AM |
|
I didn't read other posts , I am interested in buying not in selling , so any offers you may have just pm me.
Thanks
OK I'll sell you NANAS and ARPA mate PM what you want to pay for them then
|
▇ ▇▇▇ ▇▇▇▇▇ ▇▇▇▇ ▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇ ▇▇▇▇▇▇ | | ... | ............NoobKidOnThe.BLOCK.....
|
|
|
|
|
MineDumpNextOne
Member
Offline
Activity: 282
Merit: 10
|
|
June 04, 2015, 10:12:37 AM |
|
WTS 8750 NANAS
|
|
|
|
ltcrstrbrt
Legendary
Offline
Activity: 1575
Merit: 1057
|
|
June 04, 2015, 10:58:43 AM |
|
|
0x0984274936F54ab6D34B6E4c1A8aAA92416e5cfe
|
|
|
MineDumpNextOne
Member
Offline
Activity: 282
Merit: 10
|
|
June 04, 2015, 10:59:04 AM |
|
|
|
|
|
ltcrstrbrt
Legendary
Offline
Activity: 1575
Merit: 1057
|
|
June 04, 2015, 11:01:47 AM |
|
|
0x0984274936F54ab6D34B6E4c1A8aAA92416e5cfe
|
|
|
|