diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-09-03 16:22:19 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2021-02-09 11:58:21 +0000 |
commit | 19b228393fdc0899104934538edfb0cfd665cdf0 (patch) | |
tree | 7df2203e564b32e456395b125bb1c5e6d1e23a9d /src/debug_utilities/cn_deserialize.cpp | |
parent | Merge pull request #7260 (diff) | |
download | monero-19b228393fdc0899104934538edfb0cfd665cdf0.tar.xz |
New add_aux_pow RPC to support merge mining
Diffstat (limited to 'src/debug_utilities/cn_deserialize.cpp')
-rw-r--r-- | src/debug_utilities/cn_deserialize.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/debug_utilities/cn_deserialize.cpp b/src/debug_utilities/cn_deserialize.cpp index dd4701e4f..c039b93c5 100644 --- a/src/debug_utilities/cn_deserialize.cpp +++ b/src/debug_utilities/cn_deserialize.cpp @@ -133,6 +133,18 @@ int main(int argc, char* argv[]) { std::cout << "Parsed block:" << std::endl; std::cout << cryptonote::obj_to_json_str(block) << std::endl; + bool parsed = cryptonote::parse_tx_extra(block.miner_tx.extra, fields); + if (!parsed) + std::cout << "Failed to parse tx_extra" << std::endl; + + if (!fields.empty()) + { + print_extra_fields(fields); + } + else + { + std::cout << "No fields were found in tx_extra" << std::endl; + } } else if (cryptonote::parse_and_validate_tx_from_blob(blob, tx) || cryptonote::parse_and_validate_tx_base_from_blob(blob, tx)) { |