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
-2
View File
@@ -44,7 +44,6 @@ class LNPayWallet(Wallet):
return TxStatus(r, None)
statuses = {0: None, 1: True, -1: False}
return TxStatus(r, statuses[r.json()["settled"]])
def get_payment_status(self, payment_hash: str) -> TxStatus:
@@ -54,5 +53,4 @@ class LNPayWallet(Wallet):
return TxStatus(r, None)
statuses = {0: None, 1: True, -1: False}
return TxStatus(r, statuses[r.json()["settled"]])