diff --git a/deltachat-jsonrpc/typescript/src/client.ts b/deltachat-jsonrpc/typescript/src/client.ts index 28b45e024..d228249ae 100644 --- a/deltachat-jsonrpc/typescript/src/client.ts +++ b/deltachat-jsonrpc/typescript/src/client.ts @@ -39,11 +39,6 @@ export class BaseDeltachat< }); } - async selectAccount(id: number) { - await this.rpc.selectAccount(id); - this.account = await this.rpc.getAccountInfo(id); - } - async listAccounts(): Promise { return await this.rpc.getAllAccounts(); }