mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
add tx no to alt blocks
This commit is contained in:
parent
e4a4e2c9ee
commit
a9bf46a796
2 changed files with 15 additions and 5 deletions
18
src/page.h
18
src/page.h
|
@ -937,14 +937,22 @@ namespace xmreg
|
||||||
block alt_blk;
|
block alt_blk;
|
||||||
string error_msg;
|
string error_msg;
|
||||||
|
|
||||||
blocks.push_back(mstch::map {
|
int64_t no_of_txs {-1};
|
||||||
{"hash", alt_blk_hash}
|
int64_t blk_height {-1};
|
||||||
});
|
|
||||||
|
|
||||||
if (rpc.get_block(alt_blk_hash, alt_blk, error_msg))
|
if (rpc.get_block(alt_blk_hash, alt_blk, error_msg))
|
||||||
{
|
{
|
||||||
cout << " - alt block txs no: " << alt_blk.tx_hashes.size() << endl;
|
no_of_txs = alt_blk.tx_hashes.size();
|
||||||
|
blk_height = get_block_height(alt_blk);
|
||||||
|
cout << "alt blk_height: " << blk_height << ", ";
|
||||||
|
cout << "txs no: " << alt_blk.tx_hashes.size() << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blocks.push_back(mstch::map {
|
||||||
|
{"hash" , alt_blk_hash},
|
||||||
|
{"no_of_txs", no_of_txs}
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
add_css_style(context);
|
add_css_style(context);
|
||||||
|
@ -1149,7 +1157,7 @@ namespace xmreg
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
cerr << "Cant get block: " << blk_hash << endl;
|
cerr << "Cant get block: " << blk_hash << endl;
|
||||||
return fmt::format("Cant get block {:s} for some uknown reason", blk_hash);
|
return fmt::format("Cant get block {:s}", blk_hash);
|
||||||
}
|
}
|
||||||
|
|
||||||
return show_block(blk_height);
|
return show_block(blk_height);
|
||||||
|
|
|
@ -7,10 +7,12 @@
|
||||||
<table class="center" style="width:80%">
|
<table class="center" style="width:80%">
|
||||||
<tr>
|
<tr>
|
||||||
<td>hash</td>
|
<td>hash</td>
|
||||||
|
<td>txs no</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{#blocks}}
|
{{#blocks}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{hash}}</td>
|
<td>{{hash}}</td>
|
||||||
|
<td>{{no_of_txs}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/blocks}}
|
{{/blocks}}
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue