(id: string)
| 486 | } |
| 487 | |
| 488 | private getEventById(id: string) { |
| 489 | for (const [key, value] of this.waitMjEvents.entries()) { |
| 490 | if (value.id === id) { |
| 491 | return value; |
| 492 | } |
| 493 | } |
| 494 | } |
| 495 | private getEventByNonce(nonce: string) { |
| 496 | for (const [key, value] of this.waitMjEvents.entries()) { |
| 497 | if (value.nonce === nonce) { |
no outgoing calls
no test coverage detected