From bfa2bdc3686b1fd2f1bb0f1053717cd63faee3df Mon Sep 17 00:00:00 2001 From: shanejonas Date: Wed, 21 Oct 2020 11:56:22 -0700 Subject: [PATCH] fix: update service runner core-geth --- src/stores/useCoreGethStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/useCoreGethStore.ts b/src/stores/useCoreGethStore.ts index 3e1651a3..4d51c9f0 100644 --- a/src/stores/useCoreGethStore.ts +++ b/src/stores/useCoreGethStore.ts @@ -7,5 +7,5 @@ export default createStore(() => { const [serviceRunner, serviceRunnerUrl] = useServiceRunnerStore(); const [networkQuery] = useQueryParam("network", StringParam); const [rpcUrlQuery] = useQueryParam("rpcUrl", StringParam); - return useCoreGeth(serviceRunner, serviceRunnerUrl, "1.11.2", networkQuery || "mainnet", rpcUrlQuery); + return useCoreGeth(serviceRunner, serviceRunnerUrl, "1.11.15", networkQuery || "mainnet", rpcUrlQuery); });