erc20-faucet

ERC20 token faucet
Log | Files | Refs

commit 87b9c2fa9e7938bf38b3a2ade4123bdf1c02850a
parent 8d02c18c848534b4ea3273c652cc7df0b52c6822
Author: nolash <dev@holbrook.no>
Date:   Tue,  8 Dec 2020 20:58:09 +0100

Remove auto checksum address

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

diff --git a/python/erc20_single_shot_faucet/runnable/deploy.py b/python/erc20_single_shot_faucet/runnable/deploy.py @@ -39,7 +39,7 @@ def main(): if args.a != None: w3.eth.defaultAccount = web3.Web3.toChecksumAddress(args.a) - token_address = web3.Web3.toChecksumAddress(args.t) + token_address = args.t f = open(os.path.join(args.contracts_dir, 'ERC20SingleShotFaucetStorage.abi.json'), 'r') abi = json.load(f)