mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
cn_deserialize: comment out pruned tx case
it's not merged yet
This commit is contained in:
parent
e8049be955
commit
53a99ca112
@ -179,9 +179,11 @@ int main(int argc, char* argv[])
|
|||||||
}
|
}
|
||||||
else if (cryptonote::parse_and_validate_tx_from_blob(blob, tx) || cryptonote::parse_and_validate_tx_base_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)
|
if (tx.pruned)
|
||||||
std::cout << "Parsed pruned transaction:" << std::endl;
|
std::cout << "Parsed pruned transaction:" << std::endl;
|
||||||
else
|
else
|
||||||
|
*/
|
||||||
std::cout << "Parsed transaction:" << std::endl;
|
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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user