From: svost Date: Fri, 14 Apr 2017 06:35:44 +0000 (+0300) Subject: Fix wrong index in sendfrom function X-Git-Tag: nvc-v0.5.9~146^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=refs%2Fpull%2F367%2Fhead Fix wrong index in sendfrom function --- diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 757e7f4..eb302fa 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -704,7 +704,7 @@ Value sendfrom(const Array& params, bool fHelp) // Parse address CScript scriptPubKey; - string strAddress = params[0].get_str(); + string strAddress = params[1].get_str(); CBitcoinAddress address(strAddress); if (address.IsValid())