mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-07-22 14:30:51 -04:00
fix ci test by waiting longer after deleting account
This commit is contained in:
parent
b9e2454ebe
commit
54c6ce9575
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ export default class HavenoClient {
|
|||
await new Promise<void>((resolve, reject) => {
|
||||
this._accountClient.deleteAccount(new DeleteAccountRequest(), {password: this._password}, async function(err: grpcWeb.RpcError) {
|
||||
if (err) reject(err);
|
||||
else setTimeout(resolve, 5000);
|
||||
else setTimeout(resolve, 10000); // deleteAccount() call should return after finished and without requiring shut down
|
||||
});
|
||||
});
|
||||
} catch (e: any) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue