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

Function handle_master_request_later

channeld/channeld.c:307–314  ·  view source on GitHub ↗

Returns true if we queued this for later handling (steals if true) */

Source from the content-addressed store, hash-verified

305
306/* Returns true if we queued this for later handling (steals if true) */
307static bool handle_master_request_later(struct peer *peer, const u8 *msg)
308{
309 if (peer->stfu) {
310 msg_enqueue(peer->update_queue, take(msg));
311 return true;
312 }
313 return false;
314}
315
316/* Compare, with false if either is NULL */
317static bool match_type(const u8 *t1, const u8 *t2)

Callers 1

req_inFunction · 0.85

Calls 1

msg_enqueueFunction · 0.85

Tested by

no test coverage detected