Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: dafa_ce on August 11, 2021, 03:11:33 AM



Title: Yiimp mining pool error
Post by: dafa_ce on August 11, 2021, 03:11:33 AM
Hi All

I created a new altcoin and tried to set up a yiimp mining pool. But I keep getting the following (In the coin properties):

error -10: cerebralcoin is downloading blocks...

I copied the sample config from the daemon tab. And put it on the same server (127.0.0.1). The coin is built on the same server and is running with the following parameters:

cerebralcoind  -deprecatedrpc=accounts -printtoconsole

Is there something I am missing?

Thanks


Title: Re: Yiimp mining pool error
Post by: dafa_ce on August 11, 2021, 03:52:17 AM
Also when on the coin page (before I select coin properites) I have this displayed under the coin:

RPC Error: error -8: label argument must be a valid label name or "*".


Title: Re: Yiimp mining pool error
Post by: dafa_ce on August 12, 2021, 07:31:43 AM
ok i fixed the - 8 error by modding the php

Update /var/web/yaamp/modules/site/coin_results.php.
This is important for newer wallet versions. (we first noticed it in v0.18.1)
    if ($DCR || $DGB) {
    $account = '*';
} elseif ($ETH) {
    $account = $coin->master_wallet;
}
// Add your coin symbol here VVVVV
elseif ($coin->symbol == "RNG"||$coin->symbol == "TDC"||$coin->symbol == "OBTC") {
    $account = '*';
}

But still am getting the following on the yiimp server.

error -10: cerebralcoin is downloading blocks...

Anyone come across this before?