erc20-faucet

ERC20 token faucet
Log | Files | Refs

commit 835bb07485f796d413f2552443ad30abffe22706
parent f30b730022c4dc57efb224bd4cdae619565fa897
Author: nolash <dev@holbrook.no>
Date:   Sun, 20 Dec 2020 09:30:20 +0100

Fix flag processing typo for owner

Diffstat:
Mpython/MANIFEST.in | 2+-
Mpython/erc20_single_shot_faucet/runnable/deploy.py | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/python/MANIFEST.in b/python/MANIFEST.in @@ -1 +1 @@ -include **/data/*.json **/data/*.bin +include **/data/*Faucet*.json **/data/*Faucet*.bin diff --git a/python/erc20_single_shot_faucet/runnable/deploy.py b/python/erc20_single_shot_faucet/runnable/deploy.py @@ -39,8 +39,8 @@ if args.v: def main(): w3 = web3.Web3(web3.Web3.HTTPProvider(args.p)) w3.eth.defaultAccount = w3.eth.accounts[0] - if args.a != None: - w3.eth.defaultAccount = web3.Web3.toChecksumAddress(args.a) + if args.o != None: + w3.eth.defaultAccount = web3.Web3.toChecksumAddress(args.o) token_address = args.t