X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Frpcrawtransaction.cpp;h=c2a10f3056fd38b2a699f003594e7f622665274a;hb=4a6759691d71bf2a7d2a0a9e4710f0887e66ab02;hp=776789810dbc85e564776aa3d9271814d7037ea3;hpb=bfb1d91d910f8a27ca3ef1a60c8026a3e08b3f9e;p=novacoin.git diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 7767898..c2a10f3 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("pubkeyPair", view.GetMalleablePubKey().ToString())); + out.push_back(Pair("pubkeyPair", CBitcoinAddress(view.GetMalleablePubKey()).ToString())); } else { @@ -293,23 +293,21 @@ Value createrawtransaction(const Array& params, bool fHelp) // Create output destination script CScript scriptPubKey; CBitcoinAddress address(s.name_); - if (!address.IsValid()) + + if (address.IsValid()) { - CMalleablePubKey mpk(s.name_); - if (!mpk.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid output destination: ")+s.name_); + scriptPubKey.SetAddress(address); - CPubKey keyVariant, R; - mpk.GetVariant(R, keyVariant); - scriptPubKey.SetDestination(R, keyVariant); + // Don't perform duplication checking for pubkey-pair addresses + if (!address.IsPair()) + { + if (setAddress.count(address)) + throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+s.name_); + setAddress.insert(address); + } } else - { - scriptPubKey.SetDestination(address.Get()); - if (setAddress.count(address)) - throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+s.name_); - setAddress.insert(address); - } + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid output destination: ")+s.name_); int64_t nAmount = AmountFromValue(s.value_);