| 611 | } |
| 612 | |
| 613 | static void openchannel_peer_sigs_serialize(struct json_stream *stream, |
| 614 | const struct channel_id *cid, |
| 615 | const struct wally_psbt *psbt) |
| 616 | { |
| 617 | json_object_start(stream, "openchannel_peer_sigs"); |
| 618 | json_add_channel_id(stream, "channel_id", cid); |
| 619 | json_add_psbt(stream, "signed_psbt", psbt); |
| 620 | json_object_end(stream); |
| 621 | } |
| 622 | |
| 623 | REGISTER_NOTIFICATION(openchannel_peer_sigs, |
| 624 | openchannel_peer_sigs_serialize); |
nothing calls this directly
no test coverage detected