Browse Source

[rpcwallet] Don't use floating point

0.13
MarcoFalke 8 years ago
parent
commit
477777f250
  1. 4
      src/wallet/rpcwallet.cpp

4
src/wallet/rpcwallet.cpp

@ -565,7 +565,7 @@ UniValue getreceivedbyaddress(const UniValue& params, bool fHelp) @@ -565,7 +565,7 @@ UniValue getreceivedbyaddress(const UniValue& params, bool fHelp)
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address");
CScript scriptPubKey = GetScriptForDestination(address.Get());
if (!IsMine(*pwalletMain, scriptPubKey))
return (double)0.0;
return ValueFromAmount(0);
// Minimum confirmations
int nMinDepth = 1;
@ -643,7 +643,7 @@ UniValue getreceivedbyaccount(const UniValue& params, bool fHelp) @@ -643,7 +643,7 @@ UniValue getreceivedbyaccount(const UniValue& params, bool fHelp)
}
}
return (double)nAmount / (double)COIN;
return ValueFromAmount(nAmount);
}

Loading…
Cancel
Save