diff --git a/src/page.h b/src/page.h index c1e31fe..76c672a 100644 --- a/src/page.h +++ b/src/page.h @@ -4347,10 +4347,7 @@ private: { transaction tx; - if (_tx_info.id_hash != "edb1e71c24a6a3c1ce101d68c7525d6422c09d8bfe4a8f74adeb04f118211072") - continue; - - cout << "\n\n\n_tx_info.id_hash:" << _tx_info.id_hash << endl; + //cout << "\n\n\n_tx_info.id_hash:" << _tx_info.id_hash << endl; if (!xmreg::make_tx_from_json(_tx_info.tx_json, tx)) { diff --git a/src/tools.cpp b/src/tools.cpp index 5f7ece5..cd5f775 100644 --- a/src/tools.cpp +++ b/src/tools.cpp @@ -143,34 +143,34 @@ remove_trailing_path_separator(const bf::path& in_path) return bf::path(remove_trailing_path_separator(path_str)); } -//string -//timestamp_to_str(time_t timestamp, const char* format) -//{ -// auto a_time_point = chrono::system_clock::from_time_t(timestamp); -// -// try -// { -// auto utc = date::to_utc_time(chrono::system_clock::from_time_t(timestamp)); -// auto sys_time = date::to_sys_time(utc); -// -// return date::format(format, date::floor(sys_time)); -// } -// catch (std::runtime_error& e) -// { -// cerr << "xmreg::timestamp_to_str: " << e.what() << endl; -// cerr << "Seems cant convert to UTC timezone using date library. " -// "So just use local timezone." <(sys_time)); + } + catch (std::runtime_error& e) + { + cerr << "xmreg::timestamp_to_str: " << e.what() << endl; + cerr << "Seems cant convert to UTC timezone using date library. " + "So just use local timezone." <(); @@ -1121,6 +1121,24 @@ make_tx_from_json(const string& json_str, transaction& tx) { rct::rctSig& rct_signatures = tx.rct_signatures; + if (j["rct_signatures"].find("pseudoOuts") != j["rct_signatures"].end()) + { + rct::keyV& pseudoOuts = rct_signatures.pseudoOuts; + + for (json& pOut: j["rct_signatures"]["pseudoOuts"]) + { + rct::key pOut_key; + + if (!epee::string_tools::hex_to_pod(pOut, pOut_key)) + { + cerr << "Faild to parse pOut_key of pseudoOuts from json" << endl; + return false; + } + + pseudoOuts.push_back(pOut_key); + } + } + vector& ecdhInfo = rct_signatures.ecdhInfo; for (json& ecdhI: j["rct_signatures"]["ecdhInfo"]) @@ -1250,7 +1268,7 @@ make_tx_from_json(const string& json_str, transaction& tx) - cout << "From reconstructed tx: " << obj_to_json_str(tx) << endl; + //cout << "From reconstructed tx: " << obj_to_json_str(tx) << endl; return true; }