()
| 173 | } |
| 174 | |
| 175 | async fetchDeviceTime() { |
| 176 | const message = new QueryDeviceTimeMessage(); |
| 177 | const { |
| 178 | payload: { time }, |
| 179 | } = await this.sendMessage(message); |
| 180 | return time; |
| 181 | } |
| 182 | |
| 183 | async exchangeKeys() { |
| 184 | deviceLogger.info(`Exchanging keys for device ${this.id}`); |
nothing calls this directly
no test coverage detected