From 2319dfc3ebdb9bf48897e333610310c4cf9be10a 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(); }