(transport: Transport)
| 96 | } |
| 97 | |
| 98 | setTransport(transport: Transport) { |
| 99 | deviceLogger.debug( |
| 100 | `Setting transport for device ${this.id} to ${transport.constructor.name}`, |
| 101 | { transport } |
| 102 | ); |
| 103 | this.transport = transport; |
| 104 | } |
| 105 | |
| 106 | async setPrivateKey(privateKey: Buffer) { |
| 107 | deviceLogger.debug(`Setting private key for device ${this.id}`); |
no outgoing calls
no test coverage detected