remove selectAccount from highlevel client

This commit is contained in:
Simon Laux
2022-06-25 20:15:57 +02:00
parent d8d26b9cae
commit 2319dfc3eb

View File

@@ -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<T.Account[]> {
return await this.rpc.getAllAccounts();
}