X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Frpcrawtransaction.cpp;h=776789810dbc85e564776aa3d9271814d7037ea3;hb=5af8418fee23af1be2065382dda14a97034fdf56;hp=855e9bec943ac90634582feb414243e61e8bcb2d;hpb=cd33d95e908355b19a2a6d0dabf7f5bc6943d4af;p=novacoin.git diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 855e9be..7767898 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -49,7 +49,7 @@ void ScriptPubKeyToJSON(const CScript& scriptPubKey, Object& out, bool fIncludeH CMalleableKeyView view; if (pwalletMain->CheckOwnership(CPubKey(vSolutions[0]), CPubKey(vSolutions[1]), view)) - out.push_back(Pair("keyView", view.ToString())); + out.push_back(Pair("pubkeyPair", view.GetMalleablePubKey().ToString())); } else { @@ -644,7 +644,6 @@ Value createmultisig(const Array& params, bool fHelp) int nRequired = params[0].get_int(); const Array& keys = params[1].get_array(); - string strAccount; // Gather public keys if (nRequired < 1)