This coin is fucked. Everything I sent to Poloniex yesterday hasn't shown up and everything I sent to MintPal today hasn't shown up even though there has been many many confirms on the network. Since it is happening at both exchanges I assume something with the coin.
Do you have the TX IDs, and are you sure that you are on the correct chain?
Also have the devs made contact with any of the exchanges to make sure they have updated their wallet?
Mintpal eventually showed up after ~6 hours and hundreds of confirms. Still a no show at Polo.
All exchange and pools are informed.
Mintpal sent note they are updated wallet.
Poloniex I don't know, but I just test withdraw and it works fine.
Next I will send deposit.
Correct blocks will start continue after block 318000 with code:
// microCoin block size.
int64 nSubsidy = 1 * COIN;
if(nHeight < 10000)
{
nSubsidy = 0.0001 * COIN; // Premining 1 coin. (10000 blocks * 0.0001 coins) = Total 1 coin. ** For network security purpose. (Needed with the fair launch).
}
else if(nHeight >= 10000 && nHeight < 160000) // Launch start. Increasing block size on every blocks +1. ** Blocks: 1001 - 160000
{
nSubsidy = nHeight * COIN;
}
else if (nHeight >= 310000 && nHeight <= 315000) // 310,000 block rewards, decreasing 0.01 on every block
{
nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
}
else if (nHeight <= 318000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
{
nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
}
else
{
nSubsidy = (10000 - ((nHeight - 320000) * 0.01)) * COIN;
if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}
return nSubsidy;
}
Pools and markets will need that time so we can be sure everyone is update new wallet before block change.
I talk last day with MCR and it was ok for him.
Sorry if I made some one feel bad because I miss [*COIN] from code fix.
I hope you agree opensource products are higly risky invest.
Thank you for everyone who helping me and MCR with that bugfix, and big thanks for all miners.
And please, check the code, and if you see I miss something again, let me know asap.
We will update git and wallet links soon.