Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit 9b5fde4

Browse files
author
Franck Royer
committed
Upgrade to comit-sdk 0.7.0 API changes
1 parent b7fb1ce commit 9b5fde4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api_tests/lib_sdk/actors/actor.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import { Actors } from "./index";
1616

1717
export class Actor {
1818
public static defaultActionConfig = {
19-
timeout: 5000,
20-
tryInterval: 100,
19+
maxTimeoutSecs: 5,
20+
tryIntervalSecs: 1,
2121
};
2222

2323
public static async newInstance(
@@ -191,7 +191,7 @@ export class Actor {
191191
let swapEntity;
192192

193193
do {
194-
swapEntity = await this.swap.getEntity();
194+
swapEntity = await this.swap.fetchDetails();
195195

196196
await sleep(200);
197197
} while (

0 commit comments

Comments
 (0)