MCPcopy Create free account
hub / github.com/ElementsProject/lightning / outpointfilter_new

Function outpointfilter_new

wallet/txfilter.c:131–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131struct 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}

Callers 1

outpointfilters_initFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected