commit 6ab532e741cf610af0f283ad0ae702cd73687663
parent 646fc8c1e1259f3871475c9fdf4ba0e0eeafbd50
Author: nolash <dev@holbrook.no>
Date: Tue, 8 Dec 2020 20:58:46 +0100
Remove auto checksum address
Diffstat:
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
@@ -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()