Skip to content

Commit

Permalink
test: Fix default value of COutPoint.n to match C++ (#3802)
Browse files Browse the repository at this point in the history
  • Loading branch information
xdustinface authored Nov 9, 2020
1 parent 748d91d commit bd4a2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/test_framework/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def __repr__(self):


class COutPoint():
def __init__(self, hash=0, n=0):
def __init__(self, hash=0, n=0xFFFFFFFF):
self.hash = hash
self.n = n

Expand Down

0 comments on commit bd4a2ed

Please sign in to comment.