fix bug #718
authorThomasV <thomasv@gitorious>
Wed, 11 Jun 2014 11:10:48 +0000 (13:10 +0200)
committerThomasV <thomasv@gitorious>
Wed, 11 Jun 2014 11:10:48 +0000 (13:10 +0200)
lib/wallet.py

index 4664a50..edda943 100644 (file)
@@ -1599,7 +1599,7 @@ class OldWallet(Deterministic_Wallet):
         return seed
 
     def check_password(self, password):
-        seed = pw_decode(self.seed, password)
+        seed = self.get_seed(password)
         self.accounts[0].check_seed(seed)
 
     def get_mnemonic(self, password):