From 4f80a29cc484443b3daa92092a48d9a094a9fae3 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 17 Sep 2018 03:12:56 -1100 Subject: [PATCH] Test --- src/wallet/rpcwallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index e0afbb982..57c9fabc1 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -5553,8 +5553,8 @@ UniValue gatewaysmultisig(const UniValue& params, bool fHelp) bindtxid = Parseuint256((char *)params[0].get_str().c_str()); coin = params[1].get_str(); withtxid = Parseuint256((char *)params[2].get_str().c_str()); - txidaddr = params[3].get_str().c_str(); - hex = GatewaysMultisig(0,coin,bindtxid,withdrawtxid,txidaddr); + txidaddr = (char *)params[3].get_str().c_str(); + hex = GatewaysMultisig(0,coin,bindtxid,withtxid,txidaddr); if ( hex.size() > 0 ) { result.push_back(Pair("result", "success"));