Fail in DecodeHexTx if there is extra data at the end

pull/9650/head
Matt Corallo 10 years ago
parent 1c2edd9f67
commit 7ea0ad539f

@ -111,6 +111,8 @@ bool DecodeHexTx(CMutableTransaction& tx, const std::string& strHexTx, bool fTry
CDataStream ssData(txData, SER_NETWORK, PROTOCOL_VERSION);
try {
ssData >> tx;
if (!ssData.empty())
return false;
}
catch (const std::exception&) {
return false;

Loading…
Cancel
Save