| 180 | } |
| 181 | |
| 182 | static inline struct amount_msat amount_msat_max(struct amount_msat a, |
| 183 | struct amount_msat b) |
| 184 | { |
| 185 | return amount_msat_greater(a, b) ? a : b; |
| 186 | } |
| 187 | |
| 188 | /* Check whether this asset is actually the main / fee-paying asset of the |
| 189 | * current chain. */ |
no test coverage detected