Merge pull request #1068 from gurnec/gap-limit-type

check arg type in change_gap_limit()
This commit is contained in:
ThomasV 2015-03-08 03:02:57 +01:00
commit 14d7be7445
1 changed files with 1 additions and 0 deletions

View File

@ -1142,6 +1142,7 @@ class Deterministic_Wallet(Abstract_Wallet):
return self.get_seed(password)
def change_gap_limit(self, value):
assert isinstance(value, int), 'gap limit must be of type int, not of %s'%type(value)
if value >= self.gap_limit:
self.gap_limit = value
self.storage.put('gap_limit', self.gap_limit, True)