thx for node
addnode=70.72.236.5
addnode=46.105.118.15
addnode=178.120.94.161
addnode=88.81.146.85
addnode=84.160.222.22
addnode=75.102.136.87
addnode=85.26.234.81
addnode=99.228.18.37
addnode=37.212.124.35
addnode=93.47.111.238
addnode=62.182.200.245
maybe this is easyer

some people havent allow the ports to their firewall rules and sometimes the isp make some trouble.but with this list. everyone should find a node
So you never fixed the POS rewards? I still see the flaw in your code where you used a 'less than' symbol when you should have used a 'greater than' symbol.
The flaw in the logic is nHeight will also be greater then 1 so the POS reward will always been 0.1 MER
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 +

;
if(pindexBest->nHeight > 1) {
nSubsidy = 0.1 * COIN;
return nSubsidy + nFees;
}
https://github.com/themermaidcoin/MermaidCoin/blob/master/src/main.cpp#L1063