WalletComponent expects manager to have is_wallet_unlocked, added a stubbed method for now
This commit is contained in:
parent
eab95a6246
commit
cb9b348828
1 changed files with 4 additions and 0 deletions
|
@ -55,6 +55,10 @@ class LbryWalletManager(BaseWalletManager):
|
|||
def is_first_run(self):
|
||||
return True
|
||||
|
||||
@property
|
||||
def is_wallet_unlocked(self):
|
||||
return True
|
||||
|
||||
def check_locked(self):
|
||||
return defer.succeed(False)
|
||||
|
||||
|
|
Loading…
Reference in a new issue