-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detecting pending TX's from a specific address? #2303
Comments
So here is my understanding of filter based on what is in the docs. You can provide 'latest', 'pending' or a dictionary to web3.eth.filter(). You seem to be mixing the latest and pending functionality with the dictionary. |
@Raveboi334 @dbfreem The 'pending' keyword should technically work (using |
@Raveboi334 , this works for me :
|
Hi there, I was wondering if I was using the code wrong, but I am trying to figure out how to get pending transactions for a specific address.
I've tried:
web3.eth.filter({'fromBlock': 'latest', 'toBlock': 'pending', 'address': 'MY ADDRESS'})
but it only shows mined (validated) transactions.Is this a bug or is there any way to work around this?
Thank you.
The text was updated successfully, but these errors were encountered: