Pages:
Author

Topic: Ф365Coin - Your daily currency. ★0% Premine★ SHA3 Keccak Poll Added! - page 90. (Read 148465 times)

hero member
Activity: 774
Merit: 500
for everyone trying to mine at dwarfpool: the port number is 3365 NOT 3341 as in sample!

Feel free to send some coins wheen you get them: 3LvQs6x5FsyfMqiMAXA36PiqW862XqZJTu

  Cheesy
hero member
Activity: 658
Merit: 500
Admin of DwarfPool.com
Also has rejectet by dworf pool.

I did it correctly. Still getting auth failed (null)

Could you write me your wallets (usernames) via PM? And please check the port 3365
sr. member
Activity: 420
Merit: 250
r u using cpu mining or gpu mining?
hero member
Activity: 1764
Merit: 570
Twitter\X @AlexKosa1
member
Activity: 98
Merit: 10
member
Activity: 101
Merit: 10
Now, I need a pool. Getting an authentication error on Dwarfpool.
you username must be your WALLET, like 3HaXdx6SpW6YjTEqvPA6w1fixdXB4eeAMC
and not like "Wallet.ticbomb:3HaXdx6SpW6YjTEqvPA6w1fixdXB4eeAMC" and not like "apilisten" and not like "mnex11.worker_windows"
password any or email if you want to enable monitoring

I did it correctly. Still getting auth failed (null)
legendary
Activity: 1568
Merit: 1000
Twitter @Acimirov
Also has rejectet by dworf pool.
member
Activity: 135
Merit: 10
Perhaps I wasn't clear enough. It's called 365Coin and it's going to award 730 coins in a year's time. They screwed up big time.

edit: Actually, now that I look at it again... it will continue to award 730 coins per year forever, but obviously who cares what happens a year from now.
hero member
Activity: 658
Merit: 500
Admin of DwarfPool.com
Now, I need a pool. Getting an authentication error on Dwarfpool.
you username must be your WALLET, like 3HaXdx6SpW6YjTEqvPA6w1fixdXB4eeAMC
and not like "Wallet.ticbomb:3HaXdx6SpW6YjTEqvPA6w1fixdXB4eeAMC" and not like "apilisten" and not like "mnex11.worker_windows"
password any or email if you want to enable monitoring
full member
Activity: 184
Merit: 100
once again no benefit to being an early adopter...

Early adopter shouldnt get any benefits anyway...
newbie
Activity: 42
Merit: 0
whos running okpool
its still down
newbie
Activity: 9
Merit: 0
kgw and no reward for first 250 blocks.

once again no benefit to being an early adopter...
member
Activity: 101
Merit: 10
Now, I need a pool. Getting an authentication error on Dwarfpool.
newbie
Activity: 55
Merit: 0
Why aren't most of the pools running yet?
hero member
Activity: 658
Merit: 500
Admin of DwarfPool.com
member
Activity: 98
Merit: 10
so let me think...
kgw since starts
250 block without reward
so the first block rewarded is 251.. at that block diff will be sooo to cut off the solo mining i think
so solo mining is not a big deal

no one pool is working at the moment

member
Activity: 93
Merit: 10
found 1 block solo, 3mh pure scrypt speed


jealous   Cry

jealous of zero reward...
its hard crypto times)
full member
Activity: 168
Merit: 100
found 1 block solo, 3mh pure scrypt speed


jealous   Cry


nothing to be jealous of at this point.
newbie
Activity: 42
Merit: 0
member
Activity: 135
Merit: 10
GetBlockValue function from the source:

Code:
static const int64 nGenesisBlockRewardCoin = 1 * COIN;
static const int64 nWarmUp = 0 * COIN;
static const int64 nCatchUp = 0.0013889 * COIN;
static const int64 nBlockRewardStartCoin = 0.00069445 * COIN;
static const int64 nMinSubsidy = 0.00069444 * COIN;

static const int64 nTargetTimespan = 5 * 60; // retarget every 5 minutes
static const int64 nTargetSpacing = 60; // 60 seconds
static const int64 nInterval = nTargetTimespan / nTargetSpacing;

int64 static GetBlockValue(int nHeight, int64 nFees, unsigned int nBits)
{

    if (nHeight == 0)
    {
        return nGenesisBlockRewardCoin;
    }

    if (nHeight <= 250)
    {
        return nWarmUp;
    }
     if (nHeight >= 250)
    {
        return nCatchUp;
    }
     if (nHeight >= 500)
    {
        return nBlockRewardStartCoin;
    }

    int64 nSubsidy = nBlockRewardStartCoin;

    // Subsidy never halves
    nSubsidy >>= (nHeight / 191844000);

    // ensure the minimum block reward is greater than the minimum
    // and the last coin hasn't been mined
    if (nSubsidy < nMinSubsidy)
        nSubsidy = nMinSubsidy;
    if (nHeight >= 191844000)
        nSubsidy = 0;

    return nSubsidy + nFees;
}

Who wrote this garbage? First off, the transaction fees are getting discarded. But more importantly, the block reward stays in the "catch up" phase forever because you did a return from the function, instead of an assignment, so the rest of the code will never run.

See ya later, y'all.
Pages:
Jump to: