|
|
|
@ -1745,7 +1745,7 @@ public:
|
|
|
|
|
string rawtx_html = xmreg::read(TMPL_MY_RAWTX);
|
|
|
|
|
|
|
|
|
|
// add header and footer
|
|
|
|
|
string full_page = rawtx_html + get_footer();
|
|
|
|
|
string full_page = get_full_page(rawtx_html);
|
|
|
|
|
|
|
|
|
|
add_css_style(context);
|
|
|
|
|
|
|
|
|
@ -2370,11 +2370,12 @@ public:
|
|
|
|
|
{"tx_details", xmreg::read(string(TMPL_PARIALS_DIR) + "/tx_details.html")},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// read checkrawtx.html
|
|
|
|
|
string checkrawtx_html = xmreg::read(TMPL_MY_CHECKRAWTX);
|
|
|
|
|
|
|
|
|
|
// add header and footer
|
|
|
|
|
string full_page = checkrawtx_html + get_footer();
|
|
|
|
|
string full_page = get_full_page(checkrawtx_html);
|
|
|
|
|
|
|
|
|
|
add_css_style(context);
|
|
|
|
|
|
|
|
|
@ -2407,7 +2408,7 @@ public:
|
|
|
|
|
string pushrawtx_html = xmreg::read(TMPL_MY_PUSHRAWTX);
|
|
|
|
|
|
|
|
|
|
// add header and footer
|
|
|
|
|
string full_page = pushrawtx_html + get_footer();
|
|
|
|
|
string full_page = get_full_page(pushrawtx_html);
|
|
|
|
|
|
|
|
|
|
add_css_style(context);
|
|
|
|
|
|
|
|
|
|