mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
cn_deserialize: support pruned transactions
This commit is contained in:
parent
91c7d68b2d
commit
2af1ec3af7
@ -168,9 +168,12 @@ int main(int argc, char* argv[])
|
|||||||
std::cout << "Parsed block:" << std::endl;
|
std::cout << "Parsed block:" << std::endl;
|
||||||
std::cout << cryptonote::obj_to_json_str(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))
|
||||||
{
|
{
|
||||||
std::cout << "Parsed transaction:" << std::endl;
|
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;
|
std::cout << cryptonote::obj_to_json_str(tx) << std::endl;
|
||||||
|
|
||||||
bool parsed = cryptonote::parse_tx_extra(tx.extra, fields);
|
bool parsed = cryptonote::parse_tx_extra(tx.extra, fields);
|
||||||
|
Loading…
Reference in New Issue
Block a user