Skip to content

Commit

Permalink
docs: Type change for request amount too
Browse files Browse the repository at this point in the history
For multifund and openchannel_init schemas, request_amt type is also `sat`.
  • Loading branch information
ShahanaFarooqui authored and endothermicdev committed May 28, 2024
1 parent 0eb65e4 commit 43f4e12
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions cln-grpc/src/convert.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions contrib/msggen/msggen/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10086,7 +10086,7 @@
]
},
"request_amt": {
"type": "msat",
"type": "sat",
"description": [
"An amount of liquidity you'd like to lease from the peer. If peer supports `option_will_fund`, indicates to them to include this much liquidity into the channel. Must also pass in *compact_lease*."
]
Expand Down Expand Up @@ -22296,7 +22296,7 @@
]
},
"request_amt": {
"type": "msat",
"type": "sat",
"description": [
"Amount of liquidity you'd like to lease from peer. If peer supports `option_will_fund`, indicates to them to include this much liquidity into the channel. Must also pass in *compact_lease*."
]
Expand Down Expand Up @@ -23583,7 +23583,7 @@
]
},
"request_amt": {
"type": "msat",
"type": "sat",
"description": [
"An amount of liquidity you'd like to lease from the peer. If peer supports `option_will_fund`, indicates to them to include this much liquidity into the channel. Must also pass in *compact_lease*."
]
Expand Down
2 changes: 1 addition & 1 deletion doc/schemas/lightning-fundchannel.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
]
},
"request_amt": {
"type": "msat",
"type": "sat",
"description": [
"An amount of liquidity you'd like to lease from the peer. If peer supports `option_will_fund`, indicates to them to include this much liquidity into the channel. Must also pass in *compact_lease*."
]
Expand Down
2 changes: 1 addition & 1 deletion doc/schemas/lightning-multifundchannel.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
]
},
"request_amt": {
"type": "msat",
"type": "sat",
"description": [
"Amount of liquidity you'd like to lease from peer. If peer supports `option_will_fund`, indicates to them to include this much liquidity into the channel. Must also pass in *compact_lease*."
]
Expand Down
2 changes: 1 addition & 1 deletion doc/schemas/lightning-openchannel_init.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
]
},
"request_amt": {
"type": "msat",
"type": "sat",
"description": [
"An amount of liquidity you'd like to lease from the peer. If peer supports `option_will_fund`, indicates to them to include this much liquidity into the channel. Must also pass in *compact_lease*."
]
Expand Down

0 comments on commit 43f4e12

Please sign in to comment.