Bitcoin Forum
March 19, 2024, 08:04:02 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: New Features?
Add Algos? - 7 (19.4%)
Change Algo? - 4 (11.1%)
Add PoS? - 11 (30.6%)
Change nothing? - 10 (27.8%)
Other? (please post in thread) - 4 (11.1%)
Total Voters: 36

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [18] 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 ... 106 »
  Print  
Author Topic: Ф365Coin - Your daily currency. ★0% Premine★ SHA3 Keccak Poll Added!  (Read 148947 times)
xen0s
Member
**
Offline Offline

Activity: 93
Merit: 10


View Profile
March 08, 2014, 07:47:16 PM
 #341

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 )
1710835442
Hero Member
*
Offline Offline

Posts: 1710835442

View Profile Personal Message (Offline)

Ignore
1710835442
Reply with quote  #2

1710835442
Report to moderator
1710835442
Hero Member
*
Offline Offline

Posts: 1710835442

View Profile Personal Message (Offline)

Ignore
1710835442
Reply with quote  #2

1710835442
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1710835442
Hero Member
*
Offline Offline

Posts: 1710835442

View Profile Personal Message (Offline)

Ignore
1710835442
Reply with quote  #2

1710835442
Report to moderator
BTCspoon
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
March 08, 2014, 07:49:28 PM
 #342

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!!!
JohnnyDaMitch
Member
**
Offline Offline

Activity: 135
Merit: 10


View Profile
March 08, 2014, 07:50:34 PM
 #343

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;
}

Heh, what coin is that from? The initial reward is a little screwy - just comes out to 796. And it looks like the semicolon near the end would cause an unexpected drop off!
Atrides
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


Admin of DwarfPool.com


View Profile WWW
March 08, 2014, 07:50:48 PM
 #344

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

DwarfPool Quality you can trust! http://DwarfPool.com Reliable Monero, Zcash and ETH Pool Monero Proxy
Anonymous pool with failover servers and PPS, Profit Calculator and Price chart: [XMR][ETH][ZEC]... Support thread
MoneroClub - free P2P Exchange Platform www.MoneroClub.com
renfeit
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
March 08, 2014, 07:57:06 PM
 #345

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?

want rent my rig?  : http://www.betarigs.com/rig/1127

BTC: 1DMfu9uhDRDzqJxLxYbZ41G5hUEfP9VEgM
CENT: PMFBc1Hr51SKZ6uxxiCbyo8bVVDBF84Bai
xen0s
Member
**
Offline Offline

Activity: 93
Merit: 10


View Profile
March 08, 2014, 07:57:43 PM
 #346

minepool365.cloudapp.net online
Mesterlovesz74
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
March 08, 2014, 07:59:57 PM
 #347

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??

GoldReserve Donation Acc: BTC: 16g8LVMpKAREXXQNRTUkxDNCoBykouTFZ9
GoldReserve Donation Acc: XGR: GftR1m2Gh8RPsNbQBZZ2xYHbWa7ps2dp8e
365Coin (OP)
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 08, 2014, 08:00:43 PM
 #348

{
"blocks" : 146,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 5644.42806639,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"networkhashps" : 182967433883,
"pooledtx" : 0,
"testnet" : false
}
AcidSplash
Member
**
Offline Offline

Activity: 101
Merit: 10


View Profile
March 08, 2014, 08:01:59 PM
 #349

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??

I'm not him, but it's your email as the password for monitoring.
Mesterlovesz74
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
March 08, 2014, 08:02:22 PM
 #350

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?

10 BTC minimum! If the loop thing is true then 1 million BTC! Cool)

GoldReserve Donation Acc: BTC: 16g8LVMpKAREXXQNRTUkxDNCoBykouTFZ9
GoldReserve Donation Acc: XGR: GftR1m2Gh8RPsNbQBZZ2xYHbWa7ps2dp8e
Mesterlovesz74
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
March 08, 2014, 08:04:35 PM
 #351

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??

I'm not him, but it's your email as the password for monitoring.

Ok, thanks!

GoldReserve Donation Acc: BTC: 16g8LVMpKAREXXQNRTUkxDNCoBykouTFZ9
GoldReserve Donation Acc: XGR: GftR1m2Gh8RPsNbQBZZ2xYHbWa7ps2dp8e
mucroneminer
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
March 08, 2014, 08:06:59 PM
 #352

Difficulty    5,644.42806639      Cry
mikeyfinn
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
March 08, 2014, 08:07:01 PM
 #353

People, this is simple ZERO rewards til block 251. We are at ~ bock 148, and the 30 second block time is over 2 minutes, and diff is sky high. It'll never get to the rewards at this rate.....

Bitcoin: 1KZr3AvQ3m8NWEGbBPzFMFXbzHxpCbkbv4
Huntercoin: HQWSihm1WPJfjdPbeLfdVc6nsqrnJW5fYR
Sync: Si1MjELBXaffuNgEN4Zd3PkM9qzu9pq5k5
Mesterlovesz74
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
March 08, 2014, 08:07:44 PM
 #354

I stopped mining till block 251. If there will be reward after that, than I will start again!

GoldReserve Donation Acc: BTC: 16g8LVMpKAREXXQNRTUkxDNCoBykouTFZ9
GoldReserve Donation Acc: XGR: GftR1m2Gh8RPsNbQBZZ2xYHbWa7ps2dp8e
renfeit
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
March 08, 2014, 08:09:22 PM
 #355

Guys i'm getting
303 MH/s for a 7970
and 2x167 MH/s for a 5970 (2 cores)

for a total of
630 MH
u think is a good speed ?

want rent my rig?  : http://www.betarigs.com/rig/1127

BTC: 1DMfu9uhDRDzqJxLxYbZ41G5hUEfP9VEgM
CENT: PMFBc1Hr51SKZ6uxxiCbyo8bVVDBF84Bai
goodluck0319
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250



View Profile
March 08, 2014, 08:09:37 PM
 #356

we just need at least 100 blocks more to get 251 block.
lolcoind
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 08, 2014, 08:09:54 PM
 #357

http://365coin.okaypool.com/ (1% fee)   working !!!!
Atrides
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


Admin of DwarfPool.com


View Profile WWW
March 08, 2014, 08:12:19 PM
 #358

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??

I'm not him, but it's your email as the password for monitoring.

Ok, thanks!

Yes, your email. If your miner doesn't send any shares within 5 minutes, you get email alert. So you can check what happens with your rig.

DwarfPool Quality you can trust! http://DwarfPool.com Reliable Monero, Zcash and ETH Pool Monero Proxy
Anonymous pool with failover servers and PPS, Profit Calculator and Price chart: [XMR][ETH][ZEC]... Support thread
MoneroClub - free P2P Exchange Platform www.MoneroClub.com
patriot1889
Member
**
Offline Offline

Activity: 71
Merit: 10


View Profile
March 08, 2014, 08:13:39 PM
 #359

Get yourself over to http://minepool365.cloudapp.net

Hitting blocks and lowest fee around! Come on down, the water is lovely.
sulphur
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
March 08, 2014, 08:16:14 PM
 #360

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 )

i was mining xss the other day 6 hours after launch, left it for 1 night and got 1 block=100 coins 1.3mhs
i left the other miner on pool and 140coins 1.9mhs
its all luck
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 [18] 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 ... 106 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!