| 1405 | } |
| 1406 | |
| 1407 | static void start_commit_timer(struct peer *peer) |
| 1408 | { |
| 1409 | /* Already armed? */ |
| 1410 | if (peer->commit_timer) |
| 1411 | return; |
| 1412 | |
| 1413 | peer->commit_timer_attempts = 0; |
| 1414 | peer->commit_timer = new_reltimer(&peer->timers, peer, |
| 1415 | time_from_msec(peer->commit_msec), |
| 1416 | send_commit, peer); |
| 1417 | } |
| 1418 | |
| 1419 | /* If old_secret is NULL, we don't care, otherwise it is filled in. */ |
| 1420 | static void get_per_commitment_point(u64 index, struct pubkey *point, |
no test coverage detected