Skip to content

Commit dfd59f1

Browse files
authored
1 parent b5079f6 commit dfd59f1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Check out the LUDS repository: [luds](https://github.com/lnurl/luds/)
3535
- [x] LUD-16
3636
- [ ] LUD-17
3737
- [ ] LUD-18
38-
- [ ] LUD-19
38+
- [x] LUD-19
3939
- [x] LUD-20
4040
- [ ] LUD-21
4141

lnurl/models.py

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ class LnurlWithdrawResponse(LnurlResponseModel):
159159
min_withdrawable: MilliSatoshi = Field(..., alias="minWithdrawable", gt=0)
160160
max_withdrawable: MilliSatoshi = Field(..., alias="maxWithdrawable", gt=0)
161161
default_description: str = Field("", alias="defaultDescription")
162+
# LUD-19: Pay link discoverable from withdraw link.
163+
pay_link: Optional[str] = Field(None, alias="payLink")
162164

163165
@validator("max_withdrawable")
164166
def max_less_than_min(cls, value, values):

0 commit comments

Comments
 (0)