From a9ac4166be444618e9e70e39221ee2216ce0bb47 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Mon, 5 Dec 2016 09:27:41 +0800 Subject: [PATCH] minore code clean up --- src/tools.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools.cpp b/src/tools.cpp index 8b1d4dd..25aebad 100644 --- a/src/tools.cpp +++ b/src/tools.cpp @@ -1138,7 +1138,7 @@ make_tx_from_json(const string& json_str, transaction& tx) { rct::ecdhTuple a_tuple; - cout << "ecdhI[\"amount\"]: " << ecdhI["amount"] << endl; + //cout << "ecdhI[\"amount\"]: " << ecdhI["amount"] << endl; if (!epee::string_tools::hex_to_pod(ecdhI["amount"], a_tuple.amount)) { @@ -1171,7 +1171,7 @@ make_tx_from_json(const string& json_str, transaction& tx) return false; } - cout << "dest: " << epee::string_tools::pod_to_hex(outPk.back().mask) << endl; + // cout << "dest: " << epee::string_tools::pod_to_hex(outPk.back().mask) << endl; } rct_signatures.txnFee = j["rct_signatures"]["txnFee"].get();