fix: invoice.payee is None by default.
This commit is contained in:
parent
6513908a8d
commit
dcd3f80974
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ class Invoice(object):
|
||||||
amount_msat: int = 0
|
amount_msat: int = 0
|
||||||
description: Optional[str] = None
|
description: Optional[str] = None
|
||||||
description_hash: Optional[str] = None
|
description_hash: Optional[str] = None
|
||||||
payee: str
|
payee: Optional[str] = None
|
||||||
date: int
|
date: int
|
||||||
expiry: int = 3600
|
expiry: int = 3600
|
||||||
secret: Optional[str] = None
|
secret: Optional[str] = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue