accounts-index

Accounts index evm contract tooling with permissioned writes
Log | Files | Refs

commit 687b6e062bfd02dc2e9ccc2a37412a15dd375c2c
parent 1bc61f286aada982752358364d672c9ad50e3d27
Author: nolash <dev@holbrook.no>
Date:   Tue, 22 Dec 2020 14:55:04 +0100

Rename abi file in deploy

Diffstat:
Mpython/eth_accounts_index/runnable/deploy.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/eth_accounts_index/runnable/deploy.py b/python/eth_accounts_index/runnable/deploy.py @@ -40,7 +40,7 @@ if args.v: def main(): w3 = web3.Web3(web3.Web3.HTTPProvider(args.p)) - f = open(os.path.join(args.abi_dir, 'AccountsIndex.abi.json'), 'r') + f = open(os.path.join(args.abi_dir, 'AccountsIndex.json'), 'r') abi = json.load(f) f.close()