From 3835296528eb82c8982c2f2a7748b34211aa9260 Mon Sep 17 00:00:00 2001 From: Mircea Hasegan Date: Wed, 25 Sep 2024 10:03:19 +0200 Subject: [PATCH] test(e2e): fix wrong method name for stake pool stats --- packages/e2e/test/k6/scenarios/wallets.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/e2e/test/k6/scenarios/wallets.test.js b/packages/e2e/test/k6/scenarios/wallets.test.js index d9e0d5da315..b22d8ecb136 100644 --- a/packages/e2e/test/k6/scenarios/wallets.test.js +++ b/packages/e2e/test/k6/scenarios/wallets.test.js @@ -245,7 +245,7 @@ const syncWallet = ({ wallet, poolAddress }) => { if (RUN_MODE === RunMode.Restore) { sdkCom.stakePoolSearch(poolAddress); } - sdkCom.stats(); + sdkCom.stakePoolStats(); // Consider the wallet synced by tracking its first address syncedWallets.add(addresses[0]);