From 740ed0666e8ac3359c30fbcd262f663066874306 Mon Sep 17 00:00:00 2001 From: Paul <108695806+pxrl@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:11:18 +0200 Subject: [PATCH] fix: Search for ConfigStore by correct name --- scripts/hubpool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/hubpool.ts b/scripts/hubpool.ts index d78a4c3b6..312f18349 100644 --- a/scripts/hubpool.ts +++ b/scripts/hubpool.ts @@ -160,7 +160,7 @@ async function search(args: Record, _signer: Wallet): P } const [configStore, hubPool] = await Promise.all([ - utils.getContract(chainId, "ConfigStore"), + utils.getContract(chainId, "AcrossConfigStore"), utils.getContract(chainId, "HubPool"), ]);