started adding info about inputs

This commit is contained in:
moneroexamples 2016-04-21 01:32:51 +08:00
parent 5891b30122
commit a73d919389
2 changed files with 26 additions and 14 deletions

View File

@ -578,7 +578,9 @@ namespace xmreg {
string server_time_str = xmreg::timestamp_to_str(server_timestamp, "%F");
mstch::array inputs;
mstch::array inputs = mstch::array{};
mstch::array mixins_timescales;
// make timescale maps for mixins in input
@ -599,10 +601,16 @@ namespace xmreg {
size_t count = 0;
inputs.push_back{mstch::map {
inputs.push_back(mstch::map {
{"in_key_img", fmt::format("{:s}", in_key.k_image)},
{"in_amount", amount}
};
{"amount" , fmt::format("{:0.3f}", XMR_AMOUNT(in_key.amount))},
{"mixins" , mstch::array{}}
});
// get reference to mixins array created above
mstch::array& mixins = boost::get<mstch::array>(
boost::get<mstch::map>(inputs.back())["mixins"]);
// for each found output public key find its block to get timestamp
for (const uint64_t &i: absolute_offsets)
@ -618,6 +626,14 @@ namespace xmreg {
return fmt::format("- cant get block of height: {}\n", output_data.height);
}
pair<string, string> mixin_age = get_age(server_timestamp, blk.timestamp);
mixins.push_back(mstch::map {
{"mix_timestamp" , blk.timestamp},
{"mix_age" , mixin_age.first},
{"mix_age_format" , mixin_age.second}
});
// get mixin timestamp from its orginal block
mixin_timestamps.push_back(blk.timestamp);

View File

@ -35,19 +35,15 @@
<h3>Inputs {{inputs_no}}</h3>
<table class="center">
<tr>
<td>hash</td>
<td>outputs</td>
<td>size [kB]</td>
<td>version</td>
<td>key image</td>
<td>amount</td>
</tr>
{{#coinbase_txs}}
{{#inputs}}
<tr>
<td>{{hash}}</td>
<td>{{sum_outputs}}</td>
<td>{{tx_size}}</td>
<td>{{version}}</td>
<td>{{in_key_img}}</td>
<td>{{amount}}</td>
</tr>
{{/coinbase_txs}}
{{/inputs}}
</table>