commit 58fe42cea2c7aae9d42fd14a01dcc896c6c8882c
parent d5aa6466c9da6badbe0f9ccc31c7329d836bcfed
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 12 Jan 2016 09:35:45 +0100
revert commit 4ba4611599f950aa039be7e432c62c2b2707ac0f for relicencing
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -1462,7 +1462,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)
+ '''This method is not called in the code, it is kept for console use'''
if value >= self.gap_limit:
self.gap_limit = value
self.storage.put('gap_limit', self.gap_limit)