Author

Topic: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days - page 104. (Read 91473 times)

full member
Activity: 224
Merit: 100
i think he is sleeping ..
hero member
Activity: 714
Merit: 500
THIS GOING TO 200 sats!  THAT SUCKS !! Huh

WHERE IS THE DEV Huh Huh

Just glad I am not in bed and have time to pull buy orders now.
newbie
Activity: 17
Merit: 0
THIS GOING TO 200 sats!  THAT SUCKS !! Huh

WHERE IS THE DEV Huh Huh
hero member
Activity: 714
Merit: 500
Thank you for the response, now I understand.
legendary
Activity: 1764
Merit: 1022

well, still don't understand, if you compare change from 750 to 600 and from 600 to 500 is in the same form, so how the change happened from 750 to 600 but from 600 to 500 doesn't want ?


int64 nSubsidy = 750 * COIN;

   if(nHeight == 1)
    {
        nSubsidy = 40000 * COIN; // less then 0.1% premine
    }
        else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }
        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }
...........

You can have only one path with a 'if else' statement. It's like you walk into a hallway with 5 doors but you must enter the first one that matches you criteria. So with the first pass it sets the coin to 750 and all of the 'if' condition are false. Once it gets to block 1440 the first else is true and it sets coin to 600 and exits out the door. Then no matter how many more block pass you are always walking into that first door.


hero member
Activity: 714
Merit: 500

yes of course that will be always higher, and that's ok !!


else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }


        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }


so the change to 600 pass well, and this is the same:
if nHeight >= 2880  than nSubsidy = 500 * COIN
and that's ok !!!
don't know it's something else then....

Once a 'else' condition is meet it will drop out to the next command. So the block reward will never change it will always be set as 'nSubsidy = 600 * COIN'

well, still don't understand, if you compare change from 750 to 600 and from 600 to 500 is in the same form, so how the change happened from 750 to 600 but from 600 to 500 doesn't want ?

That is exactly what I was thinking  Huh
full member
Activity: 297
Merit: 100
Stick a fork in this one, it's done
sr. member
Activity: 951
Merit: 259

yes of course that will be always higher, and that's ok !!


else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }


        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }


so the change to 600 pass well, and this is the same:
if nHeight >= 2880  than nSubsidy = 500 * COIN
and that's ok !!!
don't know it's something else then....

Once a 'else' condition is meet it will drop out to the next command. So the block reward will never change it will always be set as 'nSubsidy = 600 * COIN'

well, still don't understand, if you compare change from 750 to 600 and from 600 to 500 is in the same form, so how the change happened from 750 to 600 but from 600 to 500 doesn't want ?
full member
Activity: 224
Merit: 100
when miners are going to wake up , they r going to see their waste of hash
hero member
Activity: 714
Merit: 500
Agree but as previously stated I think it is time for the dev to act now before it is to late.
full member
Activity: 224
Merit: 100
the dev could correct this ?
legendary
Activity: 1764
Merit: 1022

yes of course that will be always higher, and that's ok !!


else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }


        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }


so the change to 600 pass well, and this is the same:
if nHeight >= 2880  than nSubsidy = 500 * COIN
and that's ok !!!
don't know it's something else then....

Once a 'else' condition is meet it will drop out to the next command. So the block reward will never change it will always be set as 'nSubsidy = 600 * COIN'
full member
Activity: 224
Merit: 100
sr. member
Activity: 951
Merit: 259

We are on the block 2920 but the reward is still on 600 !??


Blocks 1441-2880 = 600 (864k)
Blocks 2881-4320 = 500 (720k)


Code:
{
    int64 nSubsidy = 750 * COIN;

if(nHeight == 1)
    {
        nSubsidy = 40000 * COIN; // less then 0.1% premine
    }
        else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }
        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }
        else if(nHeight >= 4320)
    {
        nSubsidy = 400 * COIN;
    }
        else if(nHeight >= 5760)
    {
        nSubsidy = 300 * COIN;
    }
        else if(nHeight >= 7200)
    {
        nSubsidy = 250 * COIN;
    }

    return nSubsidy + nFees;
}

The codes has a flaw. (nHeight >= 1440)  Should of been <= since the block height will always be greater then

yes of course that will be always higher, and that's ok !!


else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }


        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }


so the change to 600 pass well, and this is the same:
if nHeight >= 2880  than nSubsidy = 500 * COIN
and that's ok !!!
don't know it's something else then....
legendary
Activity: 1148
Merit: 1000
^ you beat me to that comment!


Glad my buy orders weren't filled  Grin
legendary
Activity: 1764
Merit: 1022

We are on the block 2920 but the reward is still on 600 !??


Blocks 1441-2880 = 600 (864k)
Blocks 2881-4320 = 500 (720k)


Code:
{
    int64 nSubsidy = 750 * COIN;

if(nHeight == 1)
    {
        nSubsidy = 40000 * COIN; // less then 0.1% premine
    }
        else if(nHeight >= 1440)
    {
        nSubsidy = 600 * COIN;
    }
        else if(nHeight >= 2880)
    {
        nSubsidy = 500 * COIN;
    }
        else if(nHeight >= 4320)
    {
        nSubsidy = 400 * COIN;
    }
        else if(nHeight >= 5760)
    {
        nSubsidy = 300 * COIN;
    }
        else if(nHeight >= 7200)
    {
        nSubsidy = 250 * COIN;
    }

    return nSubsidy + nFees;
}

The codes has a flaw. (nHeight >= 1440)  Should of been <= since the block height will always be greater then
full member
Activity: 224
Merit: 100
this is not gonna help , the big dump incoming block reward is broken

put yout buy order < 1000
sr. member
Activity: 951
Merit: 259

We are on the block 2920 but the reward is still on 600 !??


Blocks 1441-2880 = 600 (864k)
Blocks 2881-4320 = 500 (720k)
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
No idea why this big sell off  Huh
Ninja miner ninja dump.

The ninja's are so sneaky taking their dumps, i always miss out on these launches i think maybe i will start hanging out here in the announcements a little bit more. What exchange is this on please? I am going to go and take a look see if i can't pick me any up for cheap make the most of that 8% Smiley

Bittrex, and about the cost of mining now.
Miners have one thing in mind and that is to take profit as soon as possible. Miners dump each batch of there mined coin with no regards of letting a coin grow.


I like mining up coins I think can go 5x-10x and waiting, bit of a gamble, but it pays off big now and then.
sr. member
Activity: 308
Merit: 250
No idea why this big sell off  Huh
Ninja miner ninja dump.

The ninja's are so sneaky taking their dumps, i always miss out on these launches i think maybe i will start hanging out here in the announcements a little bit more. What exchange is this on please? I am going to go and take a look see if i can't pick me any up for cheap make the most of that 8% Smiley

Bittrex, and about the cost of mining now.

Thank you for letting me know i will go check it out now, that does not make sense does it who is selling for the same price it costs to mine? I figure someone who has free energy or the dev hope it is not the latter that would show no patience because who ever it is cannot wait to increase their holding 8% daily strange.
Jump to: