Pages:
Author

Topic: ★★★ MaruCoin ★★★ NEW X13 ALGO ! ★★★ MINE NOW ! [KGW+DGW] ★★★ NO IPO/PM EXCHANGE! - page 45. (Read 96465 times)

full member
Activity: 148
Merit: 100
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

No, only if diff > 75, look at the source.. Its a clever strategy Smiley

Hmmm, here is what I get :

With diff 25 and block >2000, reward is 138.5 per block.
With diff 25 and block <2000, reward is 3.29 (that's where we are now).

OP says that early miners will profit but I don't see that. It seems that mining this coin now is just wasting time... I will wait for block 2000.

Because DEV didn't expect GPU until block 2000 Wink


Be positive, it's not a instamine coin.


I'm just saying that this "Block reward is controlled by: 444444444/(((Difficulty+2600)/9)^2) starting from block 2000, we expect CPU's before Block 2000, so reward is higher. Start mining as fast as you can !" is wrong ! Even with CPU only miners, block reward will be higher after block 2000.
sr. member
Activity: 406
Merit: 250
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

No, only if diff > 75, look at the source.. Its a clever strategy Smiley

Hmmm, here is what I get :

With diff 25 and block >2000, reward is 138.5 per block.
With diff 25 and block <2000, reward is 3.29 (that's where we are now).

OP says that early miners will profit but I don't see that. It seems that mining this coin now is just wasting time... I will wait for block 2000.

Because DEV didn't expect GPU until block 2000 Wink


Be positive, it's not a instamine coin.
full member
Activity: 148
Merit: 100
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

No, only if diff > 75, look at the source.. Its a clever strategy Smiley

Hmmm, here is what I get :

With diff 25 and block >2000, reward is 138.5 per block.
With diff 25 and block <2000, reward is 3.29 (that's where we are now).

OP says that early miners will profit but I don't see that. It seems that mining this coin now is just wasting time... I will wait for block 2000.
legendary
Activity: 924
Merit: 1000
full member
Activity: 238
Merit: 100
Added market MARU/BTC on SHBI (SwapHole's Bitcoin Index) on https://www.swaphole.com/
full member
Activity: 140
Merit: 100
legendary
Activity: 2688
Merit: 1240
I've had several inquiries concerning my stratum code, I'll share it later on on github and post here, it is basically a mashup of X13 algo with Einsteinium's stratum (they have many changes in coinbase).

No, it has nothing todo with the "multipool" branch from ahmed bodi and no, this multipool branch does NOT work, you will never find a block.


sr. member
Activity: 280
Merit: 250
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

agree. i see that too. better don't mine until block 2000.
good luck on low reward and see you again in block 2000 Smiley

P/S: lowest reward from now to 2000 is 1 coin per block. enjoy !

If nobody mine now it will be never a block 2000.  Undecided

Somebody is going to mine it. If there's a huge drop in miners, rewards are going to go up. Just the way it's written.
full member
Activity: 210
Merit: 100
suprnova frontend seems to be down

Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

No, only if diff > 75, look at the source.. Its a clever strategy Smiley
sr. member
Activity: 406
Merit: 250
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

agree. i see that too. better don't mine until block 2000.
good luck on low reward and see you again in block 2000 Smiley

P/S: lowest reward from now to 2000 is 1 coin per block. enjoy !

If nobody mine now it will be never a block 2000.  Undecided
newbie
Activity: 42
Merit: 0
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

agree. i see that too. better don't mine until block 2000.
good luck on low reward and see you again in block 2000 Smiley

P/S: lowest reward from now to 2000 is 1 coin per block. enjoy !
newbie
Activity: 56
Merit: 0
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

No, only if diff > 75, look at the source.. Its a clever strategy Smiley

And the diff depends on how many people hear about/get interested in MARU and mine it.

If no publicity, then no interest and less miners... If coin gets attention from miners, diff will definitely go up fast.
legendary
Activity: 2688
Merit: 1240
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh

No, only if diff > 75, look at the source.. Its a clever strategy Smiley
full member
Activity: 148
Merit: 100
Then, if I'm not wrong, with the same difficulty, reward will be higher after block 2000 Huh
legendary
Activity: 2688
Merit: 1240
Hmm, i'm not so good at C++ but according to this:

Code:
    int64 nSubsidy = 0;
    if(nHeight >= 2000) {
        if((nHeight >= 7000 && dDiff > 75) || nHeight >= 15000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (4444444.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 55;
            if (nSubsidy < 5) nSubsidy = 15;
        } else { // CPU mining calc
            nSubsidy = (22222.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (2222.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

    // printf("height %u diff %4.2f reward %i \n", nHeight, dDiff, nSubsidy);
    nSubsidy *= COIN;


The Reward is okay, you have to deduct 2.5% from every block for the auto donation "charity".. so that seems to sum up.. Diff rises, reward goes down, diff goes down, reward goes up.. That is the clue of this coin if I understand correctly...
full member
Activity: 148
Merit: 100
Is there any way to see the block reward for blocks found on p2pool ?
member
Activity: 91
Merit: 10
newbie
Activity: 56
Merit: 0
The P2Pool at altmine has been doing GREAT for me all day!! I recommend you throw your hash over there.

legendary
Activity: 924
Merit: 1000
On suprnova, we get 2.93 coins per block at the moment. Is there something wrong then ?

Aye, have a feeling something is not right at all with block rewards.
full member
Activity: 148
Merit: 100
On suprnova, we get 2.93 coins per block at the moment. Is there something wrong then ?
Pages:
Jump to: