aboutsummaryrefslogtreecommitdiff
path: root/src/ringct
diff options
context:
space:
mode:
authorInterchained <president@worldvaporexpo.com>2020-02-14 18:35:53 -0500
committerMark Evans <president@worldvaporexpo.com>2020-02-17 11:55:15 -0500
commitc61abf87c0aa4157824326ff80670ad3ccc9e470 (patch)
tree94196dde14352eb38b1f977c8af02c183b6d3ba7 /src/ringct
parentMerge pull request #6048 (diff)
downloadmonero-c61abf87c0aa4157824326ff80670ad3ccc9e470.tar.xz
remove empty statements
Cleaning up a little around the code base.
Diffstat (limited to 'src/ringct')
-rw-r--r--src/ringct/bulletproofs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ringct/bulletproofs.cc b/src/ringct/bulletproofs.cc
index 80ecc5593..1588a70fa 100644
--- a/src/ringct/bulletproofs.cc
+++ b/src/ringct/bulletproofs.cc
@@ -173,7 +173,7 @@ static rct::key cross_vector_exponent8(size_t size, const std::vector<ge_p3> &A,
multiexp_data.resize(size*2 + (!!extra_point));
for (size_t i = 0; i < size; ++i)
{
- sc_mul(multiexp_data[i*2].scalar.bytes, a[ao+i].bytes, INV_EIGHT.bytes);;
+ sc_mul(multiexp_data[i*2].scalar.bytes, a[ao+i].bytes, INV_EIGHT.bytes);
multiexp_data[i*2].point = A[Ao+i];
sc_mul(multiexp_data[i*2+1].scalar.bytes, b[bo+i].bytes, INV_EIGHT.bytes);
if (scale)