mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
Merge branch 'master' into matching_inputs_and_ouputs_public_keys
This commit is contained in:
commit
87e113d2b6
1 changed files with 6 additions and 4 deletions
10
src/page.h
10
src/page.h
|
@ -1460,7 +1460,7 @@ public:
|
|||
|
||||
mixins.push_back(mstch::map{
|
||||
{"mixin_pub_key" , out_pub_key_str},
|
||||
{"mixin_outputs" , mstch::array{}},
|
||||
make_pair<string, mstch::array>("mixin_outputs" , mstch::array{}),
|
||||
{"has_mixin_outputs" , false}
|
||||
});
|
||||
|
||||
|
@ -1501,7 +1501,7 @@ public:
|
|||
mixin_outputs.push_back(mstch::map{
|
||||
{"mix_tx_hash" , tx_hash_str},
|
||||
{"mix_tx_pub_key" , mixin_tx_pub_key_str},
|
||||
{"found_outputs" , mstch::array{}},
|
||||
make_pair<string, mstch::array>("found_outputs" , mstch::array{}),
|
||||
{"has_found_outputs", false}
|
||||
});
|
||||
|
||||
|
@ -1643,7 +1643,7 @@ public:
|
|||
context.emplace("inputs", inputs);
|
||||
|
||||
context["show_inputs"] = show_key_images;
|
||||
context["inputs_no"] = inputs.size();
|
||||
context["inputs_no"] = static_cast<uint64_t>(inputs.size());
|
||||
context["sum_mixin_xmr"] = xmreg::xmr_amount_to_str(sum_mixin_xmr);
|
||||
|
||||
|
||||
|
@ -3945,7 +3945,9 @@ private:
|
|||
|
||||
if (core_storage->have_tx(tx_hash))
|
||||
{
|
||||
tx_blk_height = core_storage->get_db().get_tx_block_height(tx_hash);
|
||||
// currently get_tx_block_height seems to return a block hight
|
||||
// +1. Before it was not like this.
|
||||
tx_blk_height = core_storage->get_db().get_tx_block_height(tx_hash) - 1;
|
||||
tx_blk_found = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue