mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4888
b0d9d605
cn_deserialize: allow parsing partially valid tx extra (moneromooo-monero)
This commit is contained in:
commit
0e0777e4d1
1 changed files with 3 additions and 2 deletions
|
@ -169,6 +169,7 @@ int main(int argc, char* argv[])
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool full;
|
||||||
cryptonote::block block;
|
cryptonote::block block;
|
||||||
cryptonote::transaction tx;
|
cryptonote::transaction tx;
|
||||||
std::vector<cryptonote::tx_extra_field> fields;
|
std::vector<cryptonote::tx_extra_field> fields;
|
||||||
|
@ -200,9 +201,9 @@ int main(int argc, char* argv[])
|
||||||
std::cout << "No fields were found in tx_extra" << std::endl;
|
std::cout << "No fields were found in tx_extra" << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (cryptonote::parse_tx_extra(std::vector<uint8_t>(blob.begin(), blob.end()), fields) && !fields.empty())
|
else if (((full = cryptonote::parse_tx_extra(std::vector<uint8_t>(blob.begin(), blob.end()), fields)) || true) && !fields.empty())
|
||||||
{
|
{
|
||||||
std::cout << "Parsed tx_extra:" << std::endl;
|
std::cout << "Parsed" << (full ? "" : " partial") << " tx_extra:" << std::endl;
|
||||||
print_extra_fields(fields);
|
print_extra_fields(fields);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue