From 9a8712dd43d1d41900a59092b84fd022420729f2 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Tue, 10 Jan 2017 18:43:50 +0800 Subject: [PATCH] checking what's happening with mempool json --- src/page.h | 5 +++++ src/tools.cpp | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/page.h b/src/page.h index 42f1d7f..c1e31fe 100644 --- a/src/page.h +++ b/src/page.h @@ -4347,6 +4347,11 @@ private: { transaction tx; + if (_tx_info.id_hash != "edb1e71c24a6a3c1ce101d68c7525d6422c09d8bfe4a8f74adeb04f118211072") + continue; + + cout << "\n\n\n_tx_info.id_hash:" << _tx_info.id_hash << endl; + if (!xmreg::make_tx_from_json(_tx_info.tx_json, tx)) { cerr << "Cant make tx from _tx_info.tx_json" << endl; diff --git a/src/tools.cpp b/src/tools.cpp index 17dfcd9..5f7ece5 100644 --- a/src/tools.cpp +++ b/src/tools.cpp @@ -1023,7 +1023,7 @@ make_tx_from_json(const string& json_str, transaction& tx) } - //cout << "\n\n j.dump()" << j.dump(4) << endl; + cout << "\n\n j.dump()" << j.dump(4) << endl; // get version and unlock time from json tx.version = j["version"].get(); @@ -1248,9 +1248,9 @@ make_tx_from_json(const string& json_str, transaction& tx) } // j.find("rctsig_prunable") != j.end() - //cout << "\nreconstructed: \n" << j.dump(4) << endl; - //cout << "From reconstructed tx: " << obj_to_json_str(tx) << endl; + + cout << "From reconstructed tx: " << obj_to_json_str(tx) << endl; return true; }