From 70d7428bcd8459b6bf4a723e6d09f4792f76f830 Mon Sep 17 00:00:00 2001 From: nolash Date: Wed, 6 Jan 2021 17:56:44 +0100 Subject: [PATCH] Fix path problems --- python/eth_accounts_index/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/eth_accounts_index/registry.py b/python/eth_accounts_index/registry.py index b415f6e..e2f5f0a 100644 --- a/python/eth_accounts_index/registry.py +++ b/python/eth_accounts_index/registry.py @@ -30,7 +30,7 @@ class AccountRegistry: @staticmethod def abi(): if AccountRegistry.__abi == None: - f = open(os.path.join(datadir, 'AccountsIndex.abi.json'), 'r') + f = open(os.path.join(datadir, 'AccountsIndex.json'), 'r') AccountRegistry.__abi = json.load(f) f.close() return AccountRegistry.__abi