fix: iterating over mixins is correct now.

This commit is contained in:
moneroexamples 2017-01-20 06:20:07 +00:00
parent 3143506724
commit e4cf9c05d9
1 changed files with 6 additions and 2 deletions

View File

@ -1415,7 +1415,6 @@ public:
size_t count = 0;
// for each found output public key check if its ours or not
//for (const cryptonote::output_data_t& output_data: mixin_outputs)
for (const uint64_t& abs_offset: absolute_offsets)
{
@ -1581,10 +1580,13 @@ public:
{"mine_output" , mine_output},
{"out_idx" , to_string(output_idx_in_tx)},
{"formed_output_pk", out_pub_key_str},
{"out_in_match" , (amount == in_key.amount)},
{"out_in_match" , (txout_k.key == output_data.pubkey)},
{"amount" , xmreg::xmr_amount_to_str(amount)}
});
//cout << "txout_k.key == output_data.pubkey" << endl;
//cout << pod_to_hex(txout_k.key) << " == " << pod_to_hex(output_data.pubkey) << endl;
if (mine_output)
{
// cout << " - " << pod_to_hex(txout_k.key)
@ -1624,6 +1626,8 @@ public:
has_mixin_outputs = found_something;
++count;
} // for (const cryptonote::output_data_t& output_data: mixin_outputs)