Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个工作扫描 eth 地址并转移 usdt 令牌。
但有时事务无法传输并停留在 geth 中的待处理队列中。
并且当作业再次运行时,它仍然会检查余额并再次转移令牌。
它会创建许多来自和去往相同的待处理事务。
这个原因烧掉了很多 eth 费用。
我试过设置--txpool.accountslots 1 --txpool.accountqueue 1,但它似乎不起作用。
--txpool.accountslots 1 --txpool.accountqueue 1
我可以通过 web3 java 从 geth 获取待处理的 txns 和排队的 txns 吗?
我找到了答案:
HttpService httpService = new HttpService(endpoint); Response response = new Request<>("txpool_content", Arrays.asList(), httpService, Response.class).send();```