If the two pubkeys[] are id1 and id2, which index would id1 be? */
| 44 | |
| 45 | /* If the two pubkeys[] are id1 and id2, which index would id1 be? */ |
| 46 | static inline int pubkey_idx(const struct pubkey *id1, const struct pubkey *id2) |
| 47 | { |
| 48 | return pubkey_cmp(id1, id2) > 0; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * pubkey_to_hash160 - Get the hash for p2pkh payments for a given pubkey |
no test coverage detected