Add option to return non-segwit serialization via rpc

This commit is contained in:
Gregory Sanders
2016-11-20 09:54:51 -05:00
committed by lateminer
parent 552ef391d7
commit ab2332461b
7 changed files with 16 additions and 6 deletions

View File

@@ -197,7 +197,7 @@ UniValue getrawtransaction(const UniValue& params, bool fHelp)
if (!GetTransaction(hash, tx, Params().GetConsensus(), hashBlock, true))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "No information available about transaction");
string strHex = EncodeHexTx(tx);
string strHex = EncodeHexTx(tx, RPCSerializationFlags());
if (!fVerbose)
return strHex;