mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
build on mac
This commit is contained in:
parent
02091a64f9
commit
dc3ff97648
1 changed files with 3 additions and 3 deletions
|
@ -1461,7 +1461,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}
|
||||
});
|
||||
|
||||
|
@ -1502,7 +1502,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}
|
||||
});
|
||||
|
||||
|
@ -1633,7 +1633,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);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue