| 281 | }; |
| 282 | |
| 283 | static struct open_info *new_open_info(const tal_t *ctx) |
| 284 | { |
| 285 | struct open_info *info = tal(ctx, struct open_info); |
| 286 | |
| 287 | info->requested_lease = AMOUNT_SAT(0); |
| 288 | info->lease_blockheight = 0; |
| 289 | info->node_blockheight = 0; |
| 290 | |
| 291 | return info; |
| 292 | } |
| 293 | |
| 294 | static struct command_result * |
| 295 | psbt_funded(struct command *cmd, |
no outgoing calls
no test coverage detected