Pages:
Author

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

sr. member
Activity: 420
Merit: 250
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

Hey Atrides, if I wanna monitor my Rigs, then should I give MY email as a password or your (admin) email??
member
Activity: 93
Merit: 10
minepool365.cloudapp.net online
member
Activity: 98
Merit: 10
now we just need a 365coin profit calculator like maxcoin does.
Based on Maxcoin original Calclulator
http://dwarfpool.com/365/calc

http://DwarfPool.com/365
what price will be good at launch on any exchange in your opinion?
hero member
Activity: 658
Merit: 500
Admin of DwarfPool.com
now we just need a 365coin profit calculator like maxcoin does.
Based on Maxcoin original Calclulator
http://dwarfpool.com/365/calc

http://DwarfPool.com/365
member
Activity: 135
Merit: 10
full member
Activity: 238
Merit: 100
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.


^
THIS!!!
member
Activity: 93
Merit: 10
im soloing with 1.3mhs
 Huh

imho: i would say the solomining is good for the first 1 or 2 hours, but if this coin has 0 rewards for first 250 blocks you should use a pool to mine with this speed.
i have tested with helixcoin before and you need to be really lucky to do more coins by solo mining.
you can switch to solo mining when ppl stop mining and the diff get lower again Wink
maybe you are a lucky guy
you still can find a block of bitcon by solomine...if you are lucky )
sr. member
Activity: 300
Merit: 250
im soloing with 1.3mhs
 Huh

imho: i would say the solomining is good for the first 1 or 2 hours, but if this coin has 0 rewards for first 250 blocks you should use a pool to mine with this speed.
i have tested with helixcoin before and you need to be really lucky to do more coins by solo mining.
you can switch to solo mining when ppl stop mining and the diff get lower again Wink
member
Activity: 93
Merit: 10
found 1 block solo, 3mh pure scrypt speed


Found a block solo right at the beginning...solomining CPU from wallet. That has certainly never happened before & never will again lol.

its a shame there was no reward
if there was a reward, and no pools online, I imagine whales with hashpower mining solo, and leave you with nothing
after that they will dump their coins and set price to the floor level
not a bright future
there is enough of other coins with price at 1 satoshi
sr. member
Activity: 420
Merit: 250
now we just need a 365coin profit calculator like maxcoin does.
sr. member
Activity: 266
Merit: 250
how do I solo mining with cpu ( with wallet)? will it work?

Not worth bothering. Diff is way too high now. But you can go to debug window, console tab and enter : setgenerate true
sr. member
Activity: 266
Merit: 250
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.

I showed that to a friend. He said this:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
        int64 nSubsidy = 100 * COIN;
 
        if(nHeight <= 9088)// Assuming new Reward system kicks in Sunday 9 March 2014, 00:01 PST
        {
                nSubsidy = COIN * (796 + (500 * (nHeight / 65744)));
        }
        else if(nHeight >= 9088 && nHeight < 16288) {
                nSubsidy = COIN * 2000;
        }
        else if(nHeight >= 16288 && nHeight < 23488) {
                nSubsidy = COIN * 2250;
        }
        else if(nHeight >= 23488 && nHeight < 30688) {
                nSubsidy = COIN * 2500;
        }
        else if(nHeight >= 30688 && nHeight < 37888) {
                nSubsidy = COIN * 2750;
        }
        else if(nHeight >= 37888 && nHeight < 45088) {
                nSubsidy = COIN * 3000;
        }
        else if(nHeight >= 45088 && nHeight < 52288) {
                nSubsidy = COIN * 4000;
        }
        else if(nHeight >= 52288 && nHeight < 181888) {
                nSubsidy = COIN * 2000;
        }
        else if(nHeight >= 181888 && nHeight < 357204) {
                nSubsidy = COIN * 1600;
        }
        else if(nHeight >= 313375 && nHeight < 532520) {
                nSubsidy = COIN * 1280;
        }
        else if(nHeight >= 444862 && nHeight < 707836) {
                nSubsidy = COIN * 1024;
        }
        else if(nHeight >= 883152);
        {
                int64 nSubsidy = 1024 * COIN;
                nSubsidy >>= (nHeight / 1233794);
        }
return nSubsidy + nFees;
}
hero member
Activity: 658
Merit: 500
Admin of DwarfPool.com
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

Ooops...Thanks! changed
newbie
Activity: 42
Merit: 0
im soloing with 1.3mhs
 Huh
sr. member
Activity: 300
Merit: 250
Dwarfpool is working!

DwarfPool


- Anonymous pool, no registration required

- True round based PPS (proportional your shares), 1% fee

- Works with all known GPU and CPU miners.

- Stratum protocol: 3365

- Maxmimum transparency, no stealing shares and no hidden fees!

- DDoS protection by different providers.

- Free choice of 3 server locations worldwide.
Put the others as backup servers or use at once.
All your shares will be calculated from all servers!

- Separate workers with the same wallet-id for better vardiff and detailed per rig statistics

- Monitoring of every rig via email

- Greatly optimized stratum pool engine

Servers:
eredluin.dwarfpool.com (Japan, will be available soon)
erebor.dwarfpool.com (France)
moria.dwarfpool.com (USA)

http://dwarfpool.com/365

DwarfPool German quality you can trust!



no it does not

 Stratum protocol: 3365  -  change it.

man, when you copy the page from helixcoin, you should change the miners command examples to show correct ports Wink
sr. member
Activity: 420
Merit: 250
how do I solo mining with cpu ( with wallet)? will it work?
member
Activity: 101
Merit: 10
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

I was using the wrong port. It's working now. Thanks!

stratum+tcp://erebor.dwarfpool.com:3365
newbie
Activity: 42
Merit: 0
found 1 block solo, 3mh pure scrypt speed


Found a block solo right at the beginning...solomining CPU from wallet. That has certainly never happened before & never will again lol.

its a shame there was no reward
sr. member
Activity: 266
Merit: 250
found 1 block solo, 3mh pure scrypt speed


Found a block solo right at the beginning...solomining CPU from wallet. That has certainly never happened before & never will again lol.
member
Activity: 98
Merit: 10
121 gh/s net hash rate ..
pools are working ?
Pages:
Jump to: