Web3.py:使用挂起筛选器时出现ValueError

2022-04-01 00:00:00 python cryptocurrency ethereum web3 web3py

问题描述

我正在尝试使用web3.py在BEP20网络中查找挂起的事务。 如in this stack overflow question中所述,执行此操作的一种选择是使用Filter对象。 以下是一个应该重现我的问题的最小示例:

from web3 import Web3

peer = "https://bsc-dataseed.binance.org/"
w3 = Web3(Web3.HTTPProvider(peer))

f = w3.eth.filter('pending')
res = f.get_all_entries()

此代码导致ValueError:

ValueError: {'code': -32000, 'message': 'filter not found'}

我是否遗漏了什么?


解决方案

您使用的是一个糟糕的Binance智能链公共节点。

它可能支持也可能不支持您的操作。显然没有。我们对此无能为力。

请将此问题写给Binance Support,因为Etherum社区无法帮助您处理由私有方运行的节点。

相关文章