-
Notifications
You must be signed in to change notification settings - Fork 21.3k
Labels
Description
System information
Geth
Version: 1.10.22-stable
Git Commit: 2de49b0
Architecture: amd64
Go Version: go1.18.5
Operating System: linux
GOPATH=
GOROOT=go
Archive node
Expected behaviour
Doing a complex GraphQL query returns correct data from a block, like in 1.10.21
Actual behaviour
Too much data (logs unrelated to current block)
Steps to reproduce the behaviour
Going to GraphQL UI : http://xxxxx:8545/graphql/ui
Type the following query :
{
block(number: 15401505) {
number
transactions {
logs {
account {
address
}
}
}
}
}
More details
That block on etherscan : https://etherscan.io/block/15401505
On a 1.10.22 node, this query returns 257386 lines, which is a bit too much (could depend on when you run the request)
On a 1.10.21 node, this query returns 2209 lines, which seems more in the norm
DomantasP and Ugo