web3.pyを使用してetherの送金を行おうとしたらエラーが出てしまいました。
python
1from web3 import Web3,HTTPProvider 2 3web3 = Web3(HTTPProvider('http://localhost:7545')) 4 5web3.eth.sendTransaction({'to': '0x...', 'from': '0x...', 'value': 12345})
error
1requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=7545): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10a92be50>: Failed to establish a new connection: [Errno 61] Connection refused')) 2
調べたところURLの最大使用回数を超えた?というような情報が出てきましたがよく分かりません。
他のAPIの実行はできます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。