diff --git a/release/dogecoin.conf b/release/dogecoin.conf index 59a4051ec..ceba5f02b 100644 --- a/release/dogecoin.conf +++ b/release/dogecoin.conf @@ -1,15 +1,12 @@ rpcuser=doge - -rpcpassword=wow +rpcpassword=wow +rpcport=22555 -addnode=95.85.29.144 - -addnode=162.243.113.110 - -addnode=146.185.181.114 - -rpcport=22555 +addnode=95.85.29.144 +addnode=162.243.113.110 +addnode=146.185.181.114 +addnode=188.165.19.28 +addnode=78.46.57.132 server=1 - daemon=1 \ No newline at end of file diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index cd85e72fa..1b5b7b93a 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -137,7 +137,7 @@ double GetDifficulty(const CBlockIndex* blockindex = NULL) int64 AmountFromValue(const Value& value) { double dAmount = value.get_real(); - if (dAmount <= 0.0 || dAmount > 84000000.0) + if (dAmount <= 0.0 || dAmount > 500000000.0) throw JSONRPCError(-3, "Invalid amount"); int64 nAmount = roundint64(dAmount * COIN); if (!MoneyRange(nAmount)) diff --git a/src/irc.cpp b/src/irc.cpp index 852ce081f..2f727799c 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -299,8 +299,10 @@ void ThreadIRCSeed2(void* parg) Send(hSocket, "WHO #dogecoinTEST3\r"); } else { // randomly join #dogecoin00-#dogecoin99 - int channel_number = GetRandInt(100); - channel_number = 0; // DogeCoin: for now, just use one channel + // network is now over 3k peers , get them to join 50 random channels! + // channel_number = 0; + int channel_number = GetRandInt(50); + Send(hSocket, strprintf("JOIN #dogecoin%02d\r", channel_number).c_str()); Send(hSocket, strprintf("WHO #dogecoin%02d\r", channel_number).c_str()); }