Merge pull request #283 from svost/patch
authorCryptoManiac <CryptoManiac@users.noreply.github.com>
Mon, 22 Feb 2016 13:39:21 +0000 (16:39 +0300)
committerCryptoManiac <CryptoManiac@users.noreply.github.com>
Mon, 22 Feb 2016 13:39:21 +0000 (16:39 +0300)
Minor fix

src/irc.cpp
src/rpcwallet.cpp

index 03bc607..ecdafaa 100644 (file)
@@ -333,7 +333,7 @@ void ThreadIRCSeed2(void* parg)
             {
                 // index 7 is limited to 16 characters
                 // could get full length name at index 10, but would be different from join messages
-                strName = vWords[7].c_str();
+                strName = vWords[7];
                 printf("IRC got who\n");
             }
 
index 5ebff9c..0c27a90 100644 (file)
@@ -1785,7 +1785,7 @@ Value reservebalance(const Array& params, bool fHelp)
             nAmount = (nAmount / CENT) * CENT;  // round to cent
             if (nAmount < 0)
                 throw runtime_error("amount cannot be negative.\n");
-            mapArgs["-reservebalance"] = FormatMoney(nAmount).c_str();
+            mapArgs["-reservebalance"] = FormatMoney(nAmount);
         }
         else
         {