Merge pull request #3690 from laanwj/2014_02_gettransaction_serialize_only_tx

Serialize only CTransaction data in gettransaction RPC hex
This commit is contained in:
Gavin Andresen 2014-02-17 10:18:34 -05:00
commit e7d854c8ba

View file

@ -1496,7 +1496,7 @@ Value gettransaction(const Array& params, bool fHelp)
entry.push_back(Pair("details", details));
CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
ssTx << wtx;
ssTx << static_cast<CTransaction>(wtx);
string strHex = HexStr(ssTx.begin(), ssTx.end());
entry.push_back(Pair("hex", strHex));