You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can currently specify a URL as the web3 provider. However, you can't use IPC if you happen to be running your own node.
I think this could be fixed by changing line 119 of cli.py from:
web3 = Web3(Web3.HTTPProvider(args.web3))
to
# Assume "args.web3" is an URL; if no connection,
# see if it's an IPC file.
web3 = Web3(Web3.HTTPProvider(args.web3))
if not(web3.isConnected()):
web3 = Web3(Web3.IPCProvider(args.web3))
I don't have permission to submit a PR or I'd do that myself :)
The text was updated successfully, but these errors were encountered:
You can currently specify a URL as the web3 provider. However, you can't use IPC if you happen to be running your own node.
I think this could be fixed by changing line 119 of
cli.py
from:to
I don't have permission to submit a PR or I'd do that myself :)
The text was updated successfully, but these errors were encountered: