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

Function handle_master_request_later

channeld/channeld.c:367–374  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

365
366/* Returns true if we queued this for later handling (steals if true) */
367static bool handle_master_request_later(struct peer *peer, const u8 *msg)
368{
369 if (is_entering_stfu(peer)) {
370 msg_enqueue(peer->update_queue, take(msg));
371 return true;
372 }
373 return false;
374}
375
376static void lock_signer_outpoint(const struct bitcoin_outpoint *outpoint)
377{

Callers 1

req_inFunction · 0.85

Calls 2

is_entering_stfuFunction · 0.85
msg_enqueueFunction · 0.85

Tested by

no test coverage detected