作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法让 python 函数 web3.geth.txpool.inspect()
工作。
我尝试从命令行、ethereum/client-go
容器和 trufflesuite/ganache-cli:v6.7.0
容器使用 geth 服务器。
在每种情况下,我都会收到 txpool_inspect 方法丢失错误。我正在运行的代码非常简单,使用 Python 3.7.5 或 3.8:
from web3 import Web3
thing = Web3("http://localhost:42424")
thing.geth.txpool.inspect()
--dev --mine --rpc --rpcaddr 0.0.0.0 --rpcport 42424 --verbosity 4
我也尝试了各种其他启动选项,似乎没有什么能让我克服 txpool_inspect 不存在或丢失的主题识别错误。
最佳答案
from web3 import Web3, HTTPProvider
thing = Web3(HTTPProvider("http://localhost:42424"))
thing.geth.txpool.inspect()
--http.api "eth,net,web3,txpool"
关于ethereum - txpool_inspect 方法不存在/不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58632347/
我无法让 python 函数 web3.geth.txpool.inspect() 工作。 我尝试从命令行、ethereum/client-go 容器和 trufflesuite/ganache-cl
我是一名优秀的程序员,十分优秀!