1
0

remove lightning parameter from wallet.create_request

This commit is contained in:
ThomasV
2022-07-11 13:52:13 +02:00
parent 957174a039
commit 9ae0e5bffc
5 changed files with 8 additions and 7 deletions

View File

@@ -957,7 +957,7 @@ class Commands:
return False
amount = satoshis(amount)
expiration = int(expiration) if expiration else None
key = wallet.create_request(amount, memo, expiration, addr, True)
key = wallet.create_request(amount, memo, expiration, addr)
req = wallet.get_request(key)
return wallet.export_request(req)