From 1700af2c8de70f0e3ba0e7f081b202300deefa76 Mon Sep 17 00:00:00 2001 From: Simon Laux Date: Sat, 25 Jun 2022 20:15:57 +0200 Subject: [PATCH] remove selectAccount from highlevel client --- deltachat-jsonrpc/typescript/src/client.ts | 5 ----- 1 file changed, 5 deletions(-) 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(); }