chore: remove wait option for LntxbotWallet

This commit is contained in:
Eneko Illarramendi
2020-03-05 23:01:37 +01:00
parent 9382381144
commit 7996c48b70
4 changed files with 7 additions and 9 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ class Wallet(ABC):
pass
@abstractmethod
def get_invoice_status(self, payment_hash: str, wait: bool = True) -> TxStatus:
def get_invoice_status(self, payment_hash: str) -> TxStatus:
pass
@abstractmethod