aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-09-14 13:01:41 +0200
committerRiccardo Spagni <ric@spagni.net>2018-09-14 13:01:41 +0200
commit15570f9a8f75d49beaa0b1c06cc86ee63bcd9018 (patch)
tree697f38454511f46749d25b75f99f8445d2b3e29c /src
parentMerge pull request #4372 (diff)
parentcn_deserialize: comment out pruned tx case (diff)
downloadmonero-15570f9a8f75d49beaa0b1c06cc86ee63bcd9018.tar.xz
Merge pull request #4380
53a99ca1 cn_deserialize: comment out pruned tx case (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r--src/debug_utilities/cn_deserialize.cpp2
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;