| 906 | } |
| 907 | |
| 908 | static bool |
| 909 | lease_rates_eq(const struct lease_rates *a, |
| 910 | const struct lease_rates *b) |
| 911 | { |
| 912 | return eq_field(a, b, channel_fee_max_base_msat) |
| 913 | && eq_field(a, b, channel_fee_max_proportional_thousandths) |
| 914 | && eq_field(a, b, funding_weight) |
| 915 | && eq_field(a, b, lease_fee_base_sat) |
| 916 | && eq_field(a, b, lease_fee_basis); |
| 917 | } |
| 918 | |
| 919 | static bool node_announcement_eq(const struct msg_node_announcement *a, |
| 920 | const struct msg_node_announcement *b) |
no outgoing calls
no test coverage detected