(channel: MockChannel)
| 945 | } |
| 946 | |
| 947 | function touchMockChannel(channel: MockChannel) { |
| 948 | channel.updated_at = new Date().toISOString(); |
| 949 | } |
| 950 | |
| 951 | function normalizeParticipantPubkeys(pubkeys: string[]) { |
| 952 | return [...new Set(pubkeys.map((pubkey) => pubkey.toLowerCase()))].sort(); |
no outgoing calls
no test coverage detected