mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
core: undo output sorting
It looks like it may be buggy
This commit is contained in:
parent
85f4b600d2
commit
97cdd4c92f
1 changed files with 2 additions and 0 deletions
|
@ -309,6 +309,7 @@ namespace cryptonote
|
||||||
summary_outs_money += dst_entr.amount;
|
summary_outs_money += dst_entr.amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
// sort outs by their public key
|
// sort outs by their public key
|
||||||
std::vector<size_t> outs_order(tx.vout.size());
|
std::vector<size_t> outs_order(tx.vout.size());
|
||||||
for (size_t n = 0; n < tx.vout.size(); ++n)
|
for (size_t n = 0; n < tx.vout.size(); ++n)
|
||||||
|
@ -322,6 +323,7 @@ namespace cryptonote
|
||||||
std::swap(tx.vout[i0], tx.vout[i1]);
|
std::swap(tx.vout[i0], tx.vout[i1]);
|
||||||
std::swap(amount_keys[i0], amount_keys[i1]);
|
std::swap(amount_keys[i0], amount_keys[i1]);
|
||||||
});
|
});
|
||||||
|
#endif
|
||||||
|
|
||||||
//check money
|
//check money
|
||||||
if(summary_outs_money > summary_inputs_money )
|
if(summary_outs_money > summary_inputs_money )
|
||||||
|
|
Loading…
Reference in a new issue