Pages:
Author

Topic: [ANN] [PLEB] Plebeian | *Mandatory Wallet Update* | X13 PoW + PoS | Mine Now!| - page 12. (Read 29630 times)

hero member
Activity: 1400
Merit: 505
Mac Wallet

http://www.mediafire.com/download/xp82o3jnxvfx7pb/Plebeian-Qt.zip

PLEB: AyvTN2EF8dMvLa44JeeR8ezyggX4PUsg5z
BTC: 1Gu3KYr3HV1TGJmqgSXXQbGxxdLzTEAN6o

confirmed working and synced on osx 10.9.4
hero member
Activity: 700
Merit: 500
Where is the other 4g's comming from , i thought supernova was on own fork ^_^
legendary
Activity: 2688
Merit: 1240
There is currently still the issue with the Coin Reward issue at 0 coins since Block 476.


i've changed my daemon's main.cpp file from this:

Code:
    int64_t nSubsidy = 100 * COIN;
if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
else if(pindexBest->nHeight < 420)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 476)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 5400)
{
nSubsidy = 0 * COIN;
}

to this:

Code:
        if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight >= 2 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }


Which should fix the issue.


Hopefully the devs fix the problem soon, your wallets at home (and the mac version) wont accept the blocks with higher values above 476 until the Devs fix their code, don't panic, it will as soon as the Dev's fix it.



EDIT: Works as expected

https://i.imgur.com/GPV0T29.png

so , is it safe to mine now ?

The issue is fixed, but the dev's have not commited the fix to their source now..

If you look at the Specs for the coin, it SHOULD be safe now, as I've simply corrected their error in the code but maybe they have something different on their mind..

I cannot say for 100% as I'm not the dev :-(
When it says FINDER : unknown what does it mean ? and why does it do that ? Sad

Database has to catch up.. Give it a few mins
hero member
Activity: 700
Merit: 500
There is currently still the issue with the Coin Reward issue at 0 coins since Block 476.


i've changed my daemon's main.cpp file from this:

Code:
    int64_t nSubsidy = 100 * COIN;
if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
else if(pindexBest->nHeight < 420)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 476)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 5400)
{
nSubsidy = 0 * COIN;
}

to this:

Code:
        if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight >= 2 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }


Which should fix the issue.


Hopefully the devs fix the problem soon, your wallets at home (and the mac version) wont accept the blocks with higher values above 476 until the Devs fix their code, don't panic, it will as soon as the Dev's fix it.



EDIT: Works as expected

https://i.imgur.com/GPV0T29.png

so , is it safe to mine now ?

The issue is fixed, but the dev's have not commited the fix to their source now..

If you look at the Specs for the coin, it SHOULD be safe now, as I've simply corrected their error in the code but maybe they have something different on their mind..

I cannot say for 100% as I'm not the dev :-(
When it says FINDER : unknown what does it mean ? and why does it do that ? Sad
hero member
Activity: 700
Merit: 500
dev should be online in 2-5 hours
sr. member
Activity: 700
Merit: 250
Looking at the code you would think the 0 reward was normal.

I am questioning the developer skills now.
this dev , seems strange
the wallet seems very awesome , i like the integrated block explorer , statstics , but
1. the 0 reward as you mentioned
2. they didnt even register the IRC
*-*

Nice hashrate on Novapool Roll Eyes
Thanks , im doing a gamble i guess ^^

Yeah 50/50 on this one, They can accept the changes + the mistake or change it completely.

This is the best time to be in it with all the other pools mining 0 block rewards.
member
Activity: 70
Merit: 10
HOW DO I SOLO MINE THIS  Huh
hero member
Activity: 700
Merit: 500
Looking at the code you would think the 0 reward was normal.

I am questioning the developer skills now.
this dev , seems strange
the wallet seems very awesome , i like the integrated block explorer , statstics , but
1. the 0 reward as you mentioned
2. they didnt even register the IRC
*-*

Nice hashrate on Novapool Roll Eyes
Thanks , im doing a gamble i guess ^^
sr. member
Activity: 700
Merit: 250
Looking at the code you would think the 0 reward was normal.

I am questioning the developer skills now.
this dev , seems strange
the wallet seems very awesome , i like the integrated block explorer , statstics , but
1. the 0 reward as you mentioned
2. they didnt even register the IRC
*-*

Nice hashrate on Novapool Roll Eyes
hero member
Activity: 700
Merit: 500
Looking at the code you would think the 0 reward was normal.

I am questioning the developer skills now.
this dev , seems strange
the wallet seems very awesome , i like the integrated block explorer , statstics , but
1. the 0 reward as you mentioned
2. they didnt even register the IRC
*-*
sr. member
Activity: 700
Merit: 250
Looking at the code you would think the 0 reward was normal.

I am questioning the developer skills now.
legendary
Activity: 2688
Merit: 1240
There is currently still the issue with the Coin Reward issue at 0 coins since Block 476.


i've changed my daemon's main.cpp file from this:

Code:
    int64_t nSubsidy = 100 * COIN;
if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
else if(pindexBest->nHeight < 420)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 476)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 5400)
{
nSubsidy = 0 * COIN;
}

to this:

Code:
        if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight >= 2 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }


Which should fix the issue.


Hopefully the devs fix the problem soon, your wallets at home (and the mac version) wont accept the blocks with higher values above 476 until the Devs fix their code, don't panic, it will as soon as the Dev's fix it.



EDIT: Works as expected

https://i.imgur.com/GPV0T29.png

so , is it safe to mine now ?

The issue is fixed, but the dev's have not commited the fix to their source now..

If you look at the Specs for the coin, it SHOULD be safe now, as I've simply corrected their error in the code but maybe they have something different on their mind..

I cannot say for 100% as I'm not the dev :-(
hero member
Activity: 700
Merit: 500
There is currently still the issue with the Coin Reward issue at 0 coins since Block 476.


i've changed my daemon's main.cpp file from this:

Code:
    int64_t nSubsidy = 100 * COIN;
if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
else if(pindexBest->nHeight < 420)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 476)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 5400)
{
nSubsidy = 0 * COIN;
}

to this:

Code:
        if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight >= 2 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }


Which should fix the issue.


Hopefully the devs fix the problem soon, your wallets at home (and the mac version) wont accept the blocks with higher values above 476 until the Devs fix their code, don't panic, it will as soon as the Dev's fix it.



EDIT: Works as expected

https://i.imgur.com/GPV0T29.png

so , is it safe to mine now ?
legendary
Activity: 2688
Merit: 1240
There is currently still the issue with the Coin Reward issue at 0 coins since Block 476.


i've changed my daemon's main.cpp file from this:

Code:
    int64_t nSubsidy = 100 * COIN;
if(pindexBest->nHeight < 1)
    {
        nSubsidy = 462586 * COIN;
    }
else if(pindexBest->nHeight < 420)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 476)
    {
nSubsidy = 4200 * COIN;
    }
else if(pindexBest->nHeight < 5400)
{
nSubsidy = 0 * COIN;
}

to this:

Code:
            int64_t nSubsidy = 100 * COIN;
        if(pindexBest->nHeight == 1)
    {
        nSubsidy = 462586 * COIN;
    }
                else if(pindexBest->nHeight > 1 && pindexBest->nHeight <= 5400)
    {
                nSubsidy = 4200 * COIN;
    }


Which should fix the issue.


Hopefully the devs fix the problem soon, your wallets at home (and the mac version) wont accept the blocks with higher values above 476 until the Devs fix their code, don't panic, it will as soon as the Dev's fix it.



EDIT: Works as expected

https://i.imgur.com/GPV0T29.png
legendary
Activity: 1302
Merit: 1001
sr. member
Activity: 364
Merit: 250
Mac Wallet

http://www.mediafire.com/download/xp82o3jnxvfx7pb/Plebeian-Qt.zip

PLEB: AyvTN2EF8dMvLa44JeeR8ezyggX4PUsg5z
BTC: 1Gu3KYr3HV1TGJmqgSXXQbGxxdLzTEAN6o
newbie
Activity: 32
Merit: 0
Global network hashrate is 64GH/s!! while all three pools listed here combined reaches only 3GH/s! please make p2pool so we can join each others globally and benefit with greater hashrate.
Im currently on suprnova and finding a block @ 2Gh/s is a bit long
legendary
Activity: 1260
Merit: 1009
If you want to help out the pool ops (and other service providers) find their twitters, and retweet when they announce stuff.

legendary
Activity: 2688
Merit: 1240
There is something wrong with the coin daemon. We will have to wait for the devs
legendary
Activity: 1764
Merit: 1022
dev scam or no  Undecided

The block rewards are showing as zero on SuperNova It shows some as 4200 but the last ~10 are zero.

Pages:
Jump to: