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

Function start_commit_timer

channeld/channeld.c:1553–1562  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1551}
1552
1553static void start_commit_timer(struct peer *peer)
1554{
1555 /* Already armed? */
1556 if (peer->commit_timer)
1557 return;
1558
1559 peer->commit_timer = new_reltimer(&peer->timers, peer,
1560 time_from_msec(peer->commit_msec),
1561 send_commit_if_not_stfu, peer);
1562}
1563
1564/* Fetch the requested point. The secret is no longer returned, use
1565 * revoke_commitment instead. It is legal to call this on any

Callers 15

send_commitFunction · 0.85
send_commit_if_not_stfuFunction · 0.85
send_revocationFunction · 0.85
handle_peer_commit_sigFunction · 0.85
handle_peer_fulfill_htlcFunction · 0.85
handle_peer_fail_htlcFunction · 0.85
handle_peer_shutdownFunction · 0.85
peer_reconnectFunction · 0.85
handle_offer_htlcFunction · 0.85
handle_feeratesFunction · 0.85

Calls 1

time_from_msecFunction · 0.85

Tested by

no test coverage detected