| 129 | } |
| 130 | |
| 131 | struct outpointfilter *outpointfilter_new(tal_t *ctx) |
| 132 | { |
| 133 | struct outpointfilter *opf = tal(ctx, struct outpointfilter); |
| 134 | opf->set = tal(opf, struct outpointset); |
| 135 | outpointset_init(opf->set); |
| 136 | tal_add_destructor(opf, destroy_outpointfilter); |
| 137 | return opf; |
| 138 | } |
no outgoing calls
no test coverage detected