cn_deserialize: support pruned transactions

This commit is contained in:
moneromooo-monero 2018-07-19 11:31:23 +01:00
parent 91c7d68b2d
commit 2af1ec3af7
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -168,8 +168,11 @@ int main(int argc, char* argv[])
std::cout << "Parsed block:" << std::endl;
std::cout << cryptonote::obj_to_json_str(block) << std::endl;
}
else if (cryptonote::parse_and_validate_tx_from_blob(blob, tx))
else if (cryptonote::parse_and_validate_tx_from_blob(blob, tx) || cryptonote::parse_and_validate_tx_base_from_blob(blob, tx))
{
if (tx.pruned)
std::cout << "Parsed pruned transaction:" << std::endl;
else
std::cout << "Parsed transaction:" << std::endl;
std::cout << cryptonote::obj_to_json_str(tx) << std::endl;