-
Notifications
You must be signed in to change notification settings - Fork 68
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
web-client: Cannot request transaction history #3200
Comments
Ok, turns out this address has over 500 transactions, as all the reward inherents (this address is a validator) count as transactions. That leaves the problem of being unable to request proofs for so many txs in one requests |
And I'm observing a new error now, too:
The head block of the web-client doing the request was indeed ~5790358. |
I think the reason for the (now) second problem is this: core-rs-albatross/consensus/src/consensus/consensus_proxy.rs Lines 280 to 285 in 15586d0
The check is for lowerThan ( So this fails for reward transactions, as they are in election blocks, but try to be proven with the next election block's number. |
Requesting tx history through the web-client for address
NQ26 TT94 M4LL F8QS UH4M XPQK 9P42 QNH9 XVNY
which has 94 transactions (92 pre-migration), I get this instead from all peers:I think there are two bugs here:
1. Why do all nodes return 500 receipts, when the address only has 94 transactions to its name?2. Why can't peers not handle this maximum-receipts amount of transactions in a proof request?
The text was updated successfully, but these errors were encountered: