mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-13 00:28:03 +00:00
Only return hex field once in getrawtransaction
The hex is already returned in TxToUniv, no need to give it out a second independent time in getrawtransaction itself.
This commit is contained in:
parent
e526ca6284
commit
e029c6e709
@ -160,13 +160,10 @@ UniValue getrawtransaction(const JSONRPCRequest& request)
|
|||||||
: "No such mempool transaction. Use -txindex to enable blockchain transaction queries") +
|
: "No such mempool transaction. Use -txindex to enable blockchain transaction queries") +
|
||||||
". Use gettransaction for wallet transactions.");
|
". Use gettransaction for wallet transactions.");
|
||||||
|
|
||||||
std::string strHex = EncodeHexTx(*tx, RPCSerializationFlags());
|
|
||||||
|
|
||||||
if (!fVerbose)
|
if (!fVerbose)
|
||||||
return strHex;
|
return EncodeHexTx(*tx, RPCSerializationFlags());
|
||||||
|
|
||||||
UniValue result(UniValue::VOBJ);
|
UniValue result(UniValue::VOBJ);
|
||||||
result.push_back(Pair("hex", strHex));
|
|
||||||
TxToJSON(*tx, hashBlock, result);
|
TxToJSON(*tx, hashBlock, result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user