diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-06 15:54:17 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-06 15:54:17 +0000 |
commit | 6afcd8e37d562b2bf1f5049cae790c5fe0bfd13b (patch) | |
tree | e3c0c791b4c1239d7ffc636636a0f1f043a5a611 /src | |
parent | Merge pull request #2845 (diff) | |
download | monero-6afcd8e37d562b2bf1f5049cae790c5fe0bfd13b.tar.xz |
cn_deserialize: print tx extra fields in partly decoded tx extra
Diffstat (limited to '')
-rw-r--r-- | src/debug_utilities/cn_deserialize.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/debug_utilities/cn_deserialize.cpp b/src/debug_utilities/cn_deserialize.cpp index 7235ef855..35391d6db 100644 --- a/src/debug_utilities/cn_deserialize.cpp +++ b/src/debug_utilities/cn_deserialize.cpp @@ -153,7 +153,11 @@ int main(int argc, char* argv[]) std::cout << "Parsed transaction:" << std::endl; std::cout << cryptonote::obj_to_json_str(tx) << std::endl; - if (cryptonote::parse_tx_extra(tx.extra, fields)) + bool parsed = cryptonote::parse_tx_extra(tx.extra, fields); + if (!parsed) + std::cout << "Failed to parse tx_extra" << std::endl; + + if (!fields.empty()) { std::cout << "tx_extra has " << fields.size() << " field(s)" << std::endl; for (size_t n = 0; n < fields.size(); ++n) @@ -170,7 +174,7 @@ int main(int argc, char* argv[]) } else { - std::cout << "Failed to parse tx_extra" << std::endl; + std::cout << "No fields were found in tx_extra" << std::endl; } } else |