From eda16d45591b5f96c4043e14f16166b098eb45a5 Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Mon, 5 Dec 2016 09:12:29 +0800 Subject: [PATCH] fix: versioning not showing in the pusher's footer --- src/page.h | 9 ++++----- src/tools.cpp | 6 +----- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/page.h b/src/page.h index 2dc6573..7fd9e85 100644 --- a/src/page.h +++ b/src/page.h @@ -1297,7 +1297,7 @@ public: string rawtx_html = xmreg::read(TMPL_MY_RAWTX); // add header and footer - string full_page = rawtx_html + xmreg::read(TMPL_FOOTER); + string full_page = rawtx_html + get_footer(); add_css_style(context); @@ -1326,7 +1326,6 @@ public: if (strncmp(decoded_raw_tx_data.c_str(), UNSIGNED_TX_PREFIX, magiclen) == 0) { unsigned_tx_given = true; - cout << "UNSIGNED_TX_PREFIX data given" << endl; } // initalize page template context map @@ -1625,7 +1624,7 @@ public: for (tx_destination_entry& a_dest: ptx.construction_data.splitted_dsts) { //stealth_address_amount.insert({dest.addr, dest.amount}); - cout << get_account_address_as_str(testnet, a_dest.addr) << endl; + //cout << get_account_address_as_str(testnet, a_dest.addr) << endl; //address_amounts.push_back(a_dest.amount); destination_addresses.push_back( @@ -1820,7 +1819,7 @@ public: string checkrawtx_html = xmreg::read(TMPL_MY_CHECKRAWTX); // add header and footer - string full_page = checkrawtx_html + xmreg::read(TMPL_FOOTER); + string full_page = checkrawtx_html + get_footer(); add_css_style(context); @@ -1853,7 +1852,7 @@ public: string pushrawtx_html = xmreg::read(TMPL_MY_PUSHRAWTX); // add header and footer - string full_page = pushrawtx_html + xmreg::read(TMPL_FOOTER); + string full_page = pushrawtx_html + get_footer(); add_css_style(context); diff --git a/src/tools.cpp b/src/tools.cpp index 9cb29e0..8b1d4dd 100644 --- a/src/tools.cpp +++ b/src/tools.cpp @@ -311,10 +311,8 @@ sum_money_in_outputs(const string& json_str) { pair sum_xmr {0, 0}; - cout << json_str << endl; - - json j; + try { j = json::parse( json_str); @@ -367,8 +365,6 @@ sum_money_in_inputs(const string& json_str) { pair sum_xmr {0, 0}; - cout << json_str << endl; - json j; try {