Merge pull request #220 from svost/C4101
authorCryptoManiac <CryptoManiac@users.noreply.github.com>
Fri, 8 May 2015 16:54:50 +0000 (19:54 +0300)
committerCryptoManiac <CryptoManiac@users.noreply.github.com>
Fri, 8 May 2015 16:54:50 +0000 (19:54 +0300)
Fix MSVC C4101 warnings

1  2 
src/rpcrawtransaction.cpp

@@@ -48,8 -48,8 +48,8 @@@ void TxToJSON(const CTransaction& tx, c
  {
      entry.push_back(Pair("txid", tx.GetHash().GetHex()));
      entry.push_back(Pair("version", tx.nVersion));
 -    entry.push_back(Pair("time", (boost::int64_t)tx.nTime));
 -    entry.push_back(Pair("locktime", (boost::int64_t)tx.nLockTime));
 +    entry.push_back(Pair("time", (int64_t)tx.nTime));
 +    entry.push_back(Pair("locktime", (int64_t)tx.nLockTime));
      Array vin;
      BOOST_FOREACH(const CTxIn& txin, tx.vin)
      {
          else
          {
              in.push_back(Pair("txid", txin.prevout.hash.GetHex()));
 -            in.push_back(Pair("vout", (boost::int64_t)txin.prevout.n));
 +            in.push_back(Pair("vout", (int64_t)txin.prevout.n));
              Object o;
              o.push_back(Pair("asm", txin.scriptSig.ToString()));
              o.push_back(Pair("hex", HexStr(txin.scriptSig.begin(), txin.scriptSig.end())));
              in.push_back(Pair("scriptSig", o));
          }
 -        in.push_back(Pair("sequence", (boost::int64_t)txin.nSequence));
 +        in.push_back(Pair("sequence", (int64_t)txin.nSequence));
          vin.push_back(in);
      }
      entry.push_back(Pair("vin", vin));
@@@ -75,7 -75,7 +75,7 @@@
          const CTxOut& txout = tx.vout[i];
          Object out;
          out.push_back(Pair("value", ValueFromAmount(txout.nValue)));
 -        out.push_back(Pair("n", (boost::int64_t)i));
 +        out.push_back(Pair("n", (int64_t)i));
          Object o;
          ScriptPubKeyToJSON(txout.scriptPubKey, o, true);
          out.push_back(Pair("scriptPubKey", o));
@@@ -93,8 -93,8 +93,8 @@@
              if (pindex->IsInMainChain())
              {
                  entry.push_back(Pair("confirmations", 1 + nBestHeight - pindex->nHeight));
 -                entry.push_back(Pair("time", (boost::int64_t)pindex->nTime));
 -                entry.push_back(Pair("blocktime", (boost::int64_t)pindex->nTime));
 +                entry.push_back(Pair("time", (int64_t)pindex->nTime));
 +                entry.push_back(Pair("blocktime", (int64_t)pindex->nTime));
              }
              else
                  entry.push_back(Pair("confirmations", 0));
@@@ -209,7 -209,7 +209,7 @@@ Value listunspent(const Array& params, 
              CTxDestination address;
              if (ExtractDestination(pk, address))
              {
 -                const CScriptID& hash = boost::get<const CScriptID&>(address);
 +                const CScriptID& hash = boost::get<CScriptID>(address);
                  CScript redeemScript;
                  if (pwalletMain->GetCScript(hash, redeemScript))
                      entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end())));
@@@ -304,7 -304,7 +304,7 @@@ Value decoderawtransaction(const Array
      try {
          ssData >> tx;
      }
-     catch (std::exception &e) {
+     catch (const std::exception&) {
          throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX decode failed");
      }
  
@@@ -366,7 -366,7 +366,7 @@@ Value signrawtransaction(const Array& p
              ssData >> tx;
              txVariants.push_back(tx);
          }
-         catch (std::exception &e) {
+         catch (const std::exception&) {
              throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX decode failed");
          }
      }
@@@ -560,7 -560,7 +560,7 @@@ Value sendrawtransaction(const Array& p
      try {
          ssData >> tx;
      }
-     catch (std::exception &e) {
+     catch (const std::exception&) {
          throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX decode failed");
      }
      uint256 hashTx = tx.GetHash();