()
| 87 | } |
| 88 | |
| 89 | async close(): Promise<void> { |
| 90 | try { |
| 91 | await getRootLogger().flush(); |
| 92 | } catch { |
| 93 | // never let logger flush block process exit |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | protected async getRpc(): Promise<RPCMethods<CoreAPI>> { |
| 98 | return this.ready; |
no test coverage detected