Pages:
Author

Topic: [ANN][FUSE] Fusecoin - 1 Day PoW - 100K Coins - Ultra fair launch - X11 UPDATED - page 12. (Read 31419 times)

legendary
Activity: 2688
Merit: 1240
newbie
Activity: 14
Merit: 0
English speaker asleep. we see reward bug. accidental from testing. considering sending to "impossible address" to burn premine coins and no relaunch.
sr. member
Activity: 392
Merit: 250
hero member
Activity: 644
Merit: 500
block 1 has a 1000 coin reward

blocks 2...1440 have a 0 coin reward

blocks 1441... have a 6.875 coin reward


Fuck you dev  Huh

ok 5 min of hashpower wasted, bye bye this coin is just another scam shizzle. in total 10 min after posting this wasted of my life

beter click on the link below in my signature, u will get more btc instead of mining this
member
Activity: 70
Merit: 10
block 1 has a 1000 coin reward

blocks 2...1440 have a 0 coin reward

blocks 1441... have a 6.875 coin reward


Fuck you dev  Huh
brand new
Activity: 0
Merit: 0
At present still looks good... But...
member
Activity: 462
Merit: 10
Let everyone know this .I hate these guys who hide big pre-mine.
newbie
Activity: 42
Merit: 0
int64_t nSubsidy = 4000 * COIN;
    if(nHeight == 1)
    {
        nSubsidy=COIN*1000;
    }else
    if (nHeight <= 1440)
    {
        nSubsidy = 0;
    }else
    {
    nSubsidy=6875*(COIN/1000); //68.75
    }



block 1===10000?HuhHuhHuh?

good catch, premine is 10% not 1%... block reward is 6.875 because money supply already shown block 1 is 1000.

full member
Activity: 214
Merit: 100
There are 1440 minutes in 24 hours; so there are 1440 blocks:

60*24 = 1440

With a block reward of 6.875 there are:

1440 * 6.875 = 9900 coins

Including the premine, total coins would be:

9900 + 1000 = 10,900 coins

% of premine would be:

1000/10,900 ~ 9.17%
full member
Activity: 214
Merit: 100
The 1st block is 1000 FUSE, for the 1% premine. Then, 1440 blocks of zero rewards. These zero reward blocks allow miners to point their GPUs at a pool, and to ensure all pools are operational. This makes it impossible for developers or anyone else to instamine the first blocks, and ensures everyone is on a level playing field. Then, the reward PoW blocks kick in afterwards when everyone has had a day to prepare. Finally, after 1440 reward PoW blocks, Fusecoin turns into pure PoS.

6875*(COIN/1000)=68.75
COIN*1000=?

Here is the code again:
Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(const int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 4000 * COIN;
    if(nHeight == 1)
    {
        nSubsidy=COIN*1000;
    }else
    if (nHeight <= 1440)
    {
        nSubsidy = 0;
    }else
    {
        nSubsidy=6875*(COIN/1000); //68.75
    }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}


COIN is a constant which represents the value of a single coin. It looks to me like:

block 1 has a 1000 coin reward

blocks 2...1440 have a 0 coin reward

blocks 1441... have a 6.875 coin reward

The statement "int64_t nSubsidy = 4000 * COIN;" has no affect because nSubsidy is overwritten in all cases, by later code.
hero member
Activity: 585
Merit: 500
member
Activity: 98
Merit: 10
newbie
Activity: 42
Merit: 0
223MH hash on http://fuse.pool.mn/ alone Grin Grin Grin

I didn't bother to install the wallet, whats the current net hash now?



sr. member
Activity: 1274
Merit: 265
It truley is amazing at the amount of retards there are that cannot read
what they are mining or bother asking questions before they even mine!

I'm really happy that these are the idiots I make my money from just from
their sheer laziness and stupidity
long may they be around LOL
full member
Activity: 224
Merit: 100
The 1st block is 1000 FUSE, for the 1% premine. Then, 1440 blocks of zero rewards. These zero reward blocks allow miners to point their GPUs at a pool, and to ensure all pools are operational. This makes it impossible for developers or anyone else to instamine the first blocks, and ensures everyone is on a level playing field. Then, the reward PoW blocks kick in afterwards when everyone has had a day to prepare. Finally, after 1440 reward PoW blocks, Fusecoin turns into pure PoS.




Current Block is  116,still zero block reward?? Huh Huh


around 1300 blocks away, it might be a good idea to point it somewhere else if you are renting
hero member
Activity: 1792
Merit: 513
<3 DeepOnion
sr. member
Activity: 386
Merit: 250
The 1st block is 1000 FUSE, for the 1% premine. Then, 1440 blocks of zero rewards. These zero reward blocks allow miners to point their GPUs at a pool, and to ensure all pools are operational. This makes it impossible for developers or anyone else to instamine the first blocks, and ensures everyone is on a level playing field. Then, the reward PoW blocks kick in afterwards when everyone has had a day to prepare. Finally, after 1440 reward PoW blocks, Fusecoin turns into pure PoS.




Current Block is  116,still zero block reward?? Huh Huh
sr. member
Activity: 728
Merit: 251
The 1st block is 1000 FUSE, for the 1% premine. Then, 1440 blocks of zero rewards. These zero reward blocks allow miners to point their GPUs at a pool, and to ensure all pools are operational. This makes it impossible for developers or anyone else to instamine the first blocks, and ensures everyone is on a level playing field. Then, the reward PoW blocks kick in afterwards when everyone has had a day to prepare. Finally, after 1440 reward PoW blocks, Fusecoin turns into pure PoS.

6875*(COIN/1000)=68.75
COIN*1000=?
newbie
Activity: 14
Merit: 0
The 1st block is 1000 FUSE, for the 1% premine. Then, 1440 blocks of zero rewards. These zero reward blocks allow miners to point their GPUs at a pool, and to ensure all pools are operational. This makes it impossible for developers or anyone else to instamine the first blocks, and ensures everyone is on a level playing field. Then, the reward PoW blocks kick in afterwards when everyone has had a day to prepare. Finally, after 1440 reward PoW blocks, Fusecoin turns into pure PoS.
hero member
Activity: 868
Merit: 1000
int64_t nSubsidy = 4000 * COIN;
    if(nHeight == 1)
    {
        nSubsidy=COIN*1000;
    }else
    if (nHeight <= 1440)
    {
        nSubsidy = 0;
    }else
    {
    nSubsidy=6875*(COIN/1000); //68.75
    }



block 1===10000?HuhHuhHuh?

Wow. U can actually read code. Why not learn to read OP Huh??
Pages:
Jump to: