diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-14 10:55:50 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-14 10:55:50 +0000 |
commit | 53a99ca112c288fcaf57af4b0022a85bfbed1564 (patch) | |
tree | f6681827718c15483cebe0a3f7b6d92df12fab8e /src | |
parent | Merge pull request #4178 (diff) | |
download | monero-53a99ca112c288fcaf57af4b0022a85bfbed1564.tar.xz |
cn_deserialize: comment out pruned tx case
it's not merged yet
Diffstat (limited to 'src')
-rw-r--r-- | src/debug_utilities/cn_deserialize.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/debug_utilities/cn_deserialize.cpp b/src/debug_utilities/cn_deserialize.cpp index bf228fe14..3e2552230 100644 --- a/src/debug_utilities/cn_deserialize.cpp +++ b/src/debug_utilities/cn_deserialize.cpp @@ -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)) { +/* 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; |