diff --git a/src/main.cpp b/src/main.cpp index 1553d149..30512d3e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4684,10 +4684,20 @@ void static BitcoinMiner(CWallet *pwallet) else { #ifdef __GNUC__ + #ifdef __powerpc__ + nPrimeCounter += nPrimesHit; + nTestCounter += nTests; + nChainCounter += nChainsHit; + #elif __powerpc64__ + nPrimeCounter += nPrimesHit; + nTestCounter += nTests; + nChainCounter += nChainsHit; + #else // Use atomic increment __sync_add_and_fetch(&nPrimeCounter, nPrimesHit); __sync_add_and_fetch(&nTestCounter, nTests); __sync_add_and_fetch(&nChainCounter, nChainsHit); + #endif #else nPrimeCounter += nPrimesHit; nTestCounter += nTests; diff --git a/src/net.cpp b/src/net.cpp index 569da7c0..4c684737 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1196,6 +1196,7 @@ static const char *strMainNetDNSSeed[][2] = { {"xpm.altcointech.net", "dnsseed.xpm.altcointech.net"}, {"xpm2.altcointech.net", "dnsseed.xpm2.altcointech.net"}, {"primeseed.muuttuja.org", "primeseed.muuttuja.org"},*/ + {"datacoin.darkgamex.ch", "dtc.dnsseed01.datacoin.darkgamex.ch"}, {NULL, NULL} };