Remove c_str: stringvar1 = stringvar2 283/head
authorsvost <ya.nowa@yandex.ru>
Mon, 22 Feb 2016 12:30:33 +0000 (15:30 +0300)
committersvost <ya.nowa@yandex.ru>
Mon, 22 Feb 2016 12:30:33 +0000 (15:30 +0300)
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
         {