Skip to content

Commit

Permalink
xmr: bp key vector iterator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ph4r05 committed Aug 19, 2018
1 parent 49c2597 commit 9f8a700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/monero/xmr/bulletproof.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def __iter__(self):
return self

def __next__(self):
if self.current_idx > self.size:
if self.current_idx >= self.size:
raise StopIteration
else:
self.current_idx += 1
Expand Down

0 comments on commit 9f8a700

Please sign in to comment.