Skip to content

Commit

Permalink
Fix GCC build error
Browse files Browse the repository at this point in the history
  • Loading branch information
razgadjanje committed Oct 12, 2018
1 parent 971f755 commit 7a25536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cryptonote_core/cryptonote_tx_utils.cpp
Expand Up @@ -133,7 +133,7 @@ namespace cryptonote
out_amounts[1] += out_amounts[0];
for (size_t n = 1; n < out_amounts.size(); ++n)
out_amounts[n - 1] = out_amounts[n];
out_amounts.resize(out_amounts.size() - 1);
out_amounts.pop_back();
}
}
else
Expand Down

0 comments on commit 7a25536

Please sign in to comment.