Post
Topic
Board Announcements (Altcoins)
Re: ★FlappyCoin★EXPLORER★SP2★WinQt is here★BLOCK REWARD 25000★NEXT 10k Blocks Only★
by
hanzou
on 03/08/2017, 16:17:28 UTC
http://blockcrawler.rf.gd/ is down for me as well. uBm can you report on the status of this? And for future reference is there a repo on github for your blockcrawler code/config?

got a change request to p2pool node:
(payout period 24 hours is really a bit long, people can mine a short period and get paid out very long.)
change 24h to 6 h we can also give a higher spread. and targetlookbehind could be more like 120 instead of 200.
FYI I still intend to get around to testing these settings in my p2pool repo, unless someone has already done this.

p2pool creates the coins directly inthe miner´s wallet. , so no payout needed.
Ahh yeah I think I mentioned that here on July 25th:
From what I can tell p2pool sets the multi-recipient payouts directly in the block reward tx, so it isn't subject to any transaction fee there.
I'm still surprised that UNOMP does something different.

EDIT: BTW, if the block reward until the 789555 block was of 25000 flaps, why I only received 12,500 Flaps in each block I discovered in solo mining?
Looks like there was a typo on the Wordpress page. I've corrected it to say 12500 for that range.

my flappy wallet is saying        Warning: This version is obsolete, upgrade required!      ?
It spawns that message here in the code:
Code:
   // Check the version of the last 100 blocks to see if we need to upgrade:
    if (!fIsInitialDownload)
    {
...
        if (nUpgraded > 0)
            printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CU
RRENT_VERSION);
        if (nUpgraded > 100/2)
            // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn
 the user:
            strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
    }
Doesn't it just refer to an instant when you're mining on a stale version of the chain and need to download the latest block(s)? That is, it would be expected to show up once in a while as the chain advances every minute and we don't have infinitely efficient network communication.

However if the message just spams endlessly, that could be a problem.