Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [MCL] MiracleCoin | No ICO | Proof of Faucet distribution | Traders Coin
by
MiracleCoin
on 15/10/2014, 06:27:31 UTC
In VPS I haven't got any coins. Whats wrong?

Are you using Amazon AWS?  Others have mentioned that isn't working... possibly because someone already has a node running there.
You need to make sure that port 666 is open:

https://github.com/MiracleCoin/MiracleCoin/blob/b3e46328710c42a7fe1e68bcecafe3c595bd4b84/src/qt/bitcoingui.cpp#L1134

Code:
void BitcoinGUI::bountySendRequest()
{
CPubKey key;
//if (!pwalletMain->GetKeyFromPool(key))
// return;
key = pwalletMain->vchDefaultKey;
const QString url (QString("http://faucet.miraclecoin.net:666/miraclecoin/get/%1")
.arg(QString::fromStdString(CBitcoinAddress(key.GetID()).ToString())));
printf("Opening url: \"%s\"\n", url.toStdString().c_str());
QNetworkRequest request ((QUrl(url)));
request.setHeader(QNetworkRequest::ContentTypeHeader,
"text/plain; charset=utf-8");
netManager.get(request);
}

Requests to faucet are not sent by daemon, so you would need to compile qt wallet. I will upload linux qt later today.