unlike amount.h, we expect negative values for a - b. */
| 1288 | |
| 1289 | /* unlike amount.h, we expect negative values for a - b. */ |
| 1290 | static s64 sats_diff(struct amount_sat a, struct amount_sat b) |
| 1291 | { |
| 1292 | return (s64)a.satoshis - (s64)b.satoshis; /* Raw: splicing numbers can wrap! */ |
| 1293 | } |
| 1294 | |
| 1295 | static void send_message_batch(struct peer *peer, u8 **msgs) |
| 1296 | { |
no outgoing calls
no test coverage detected