From 6ab532e741cf610af0f283ad0ae702cd73687663 Mon Sep 17 00:00:00 2001 From: nolash Date: Tue, 8 Dec 2020 20:58:46 +0100 Subject: [PATCH] Remove auto checksum address --- python/giftable_erc20_token/runnable/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/giftable_erc20_token/runnable/deploy.py b/python/giftable_erc20_token/runnable/deploy.py index ad6e6ab..b970378 100644 --- a/python/giftable_erc20_token/runnable/deploy.py +++ b/python/giftable_erc20_token/runnable/deploy.py @@ -51,7 +51,7 @@ def main(): w3.eth.defaultAccount = w3.eth.accounts[0] if args.o != None: - w3.eth.defaultAccount = web3.Web3.toChecksumAddress(args.o) + w3.eth.defaultAccount = args.o c = w3.eth.contract(abi=abi, bytecode=bytecode) tx_hash = c.constructor(args.n, args.s, args.d).transact()