mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
Merge remote-tracking branch 'origin/show_alt_blocks' into show_alt_blocks
# Conflicts: # src/page.h
This commit is contained in:
commit
ba6f5b81f0
1 changed files with 10 additions and 21 deletions
31
src/page.h
31
src/page.h
|
@ -1123,17 +1123,6 @@ namespace xmreg
|
||||||
show_tx(string tx_hash_str, uint16_t with_ring_signatures = 0)
|
show_tx(string tx_hash_str, uint16_t with_ring_signatures = 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
mstch::map context {
|
|
||||||
{"testnet" , this->testnet},
|
|
||||||
{"show_cache_times" , show_cache_times},
|
|
||||||
{"has_error" , false},
|
|
||||||
{"error_tx_not_found" , false},
|
|
||||||
{"error_msg" , string{}},
|
|
||||||
{"txs" , mstch::array{}}
|
|
||||||
};
|
|
||||||
|
|
||||||
add_css_style(context);
|
|
||||||
|
|
||||||
// parse tx hash string to hash object
|
// parse tx hash string to hash object
|
||||||
crypto::hash tx_hash;
|
crypto::hash tx_hash;
|
||||||
|
|
||||||
|
@ -1148,8 +1137,6 @@ namespace xmreg
|
||||||
|
|
||||||
string blk_timestamp {"N/A"};
|
string blk_timestamp {"N/A"};
|
||||||
|
|
||||||
mstch::map tx_context;
|
|
||||||
|
|
||||||
// get transaction
|
// get transaction
|
||||||
transaction tx;
|
transaction tx;
|
||||||
|
|
||||||
|
@ -1187,15 +1174,11 @@ namespace xmreg
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// tx is nowhere to be found :-(
|
// tx is nowhere to be found :-(
|
||||||
|
return string("Cant get tx: " + tx_hash_str);
|
||||||
context["has_error"] = true;
|
}
|
||||||
context["error_tx_not_found"] = true;
|
|
||||||
context["tx_hash"] = tx_hash_str;
|
|
||||||
|
|
||||||
return mstch::render(template_file["tx"], context);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // if (!mcore->get_tx(tx_hash, tx))
|
mstch::map tx_context;
|
||||||
|
|
||||||
if (enable_tx_cache && tx_context_cache.Contains({tx_hash, with_ring_signatures}))
|
if (enable_tx_cache && tx_context_cache.Contains({tx_hash, with_ring_signatures}))
|
||||||
{
|
{
|
||||||
|
@ -1348,6 +1331,12 @@ namespace xmreg
|
||||||
return boost::get<string>(tx_context["error_msg"]);
|
return boost::get<string>(tx_context["error_msg"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mstch::map context {
|
||||||
|
{"testnet" , this->testnet},
|
||||||
|
{"show_cache_times" , show_cache_times},
|
||||||
|
{"txs" , mstch::array{}}
|
||||||
|
};
|
||||||
|
|
||||||
boost::get<mstch::array>(context["txs"]).push_back(tx_context);
|
boost::get<mstch::array>(context["txs"]).push_back(tx_context);
|
||||||
|
|
||||||
map<string, string> partials {
|
map<string, string> partials {
|
||||||
|
@ -5456,7 +5445,7 @@ namespace xmreg
|
||||||
= MempoolStatus::current_network_info;
|
= MempoolStatus::current_network_info;
|
||||||
|
|
||||||
j_info = json {
|
j_info = json {
|
||||||
{"status" , MempoolStatus::network_info::get_status_string(local_copy_network_info.status)},
|
{"status" , local_copy_network_info.current},
|
||||||
{"current" , local_copy_network_info.current},
|
{"current" , local_copy_network_info.current},
|
||||||
{"height" , local_copy_network_info.height},
|
{"height" , local_copy_network_info.height},
|
||||||
{"target_height" , local_copy_network_info.target_height},
|
{"target_height" , local_copy_network_info.target_height},
|
||||||
|
|
Loading…
Reference in a new issue