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