From 50878827159cd1feafe62e0080761288a3bc8126 Mon Sep 17 00:00:00 2001 From: William Chong Date: Thu, 19 Dec 2024 22:59:37 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20rpcURL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- store/wallet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/wallet.js b/store/wallet.js index d9e08e0..9048a28 100644 --- a/store/wallet.js +++ b/store/wallet.js @@ -96,7 +96,7 @@ export const actions = { commit('prepareTx') const client = new ISCNSigningClient() await client.connectWithSigner( - connector.rpcURL, + connector.options.rpcURL, state.offlineSigner, ) @@ -124,7 +124,7 @@ export const actions = { commit('prepareTx') const client = new ISCNSigningClient() await client.connectWithSigner( - connector.rpcURL, + connector.options.rpcURL, state.offlineSigner, )