openethereum / parity-ethereum

The fast, light, and robust client for Ethereum-like networks.
Other
6.82k stars 1.69k forks source link

DB migration from 1.11.1 to 2.x causes event logs to disappear #9629

Closed andrewheadricke closed 5 years ago

andrewheadricke commented 5 years ago

It worked fine in Parity 1.11.x branch... Now it returns zero results. The request is asking for all transfer events over a large period of time, so yes it should return a large amount of data and it usually takes a good 30-40 seconds to run. But its not working at all now, and returns instantly with zero events. No errors.

Using web3@0.20.7

jam10o-new commented 5 years ago

Hey, what parameters were you running parity with? (archive, tracing?) without transaction tracing enabled you likely won't see historical events for your contract.

andrewheadricke commented 5 years ago

the only pertinent flag i'm using is --no-warp, parity 1.11.x branch was able to retrieve all the logs/events no problem. I don't want to run in archive mode because I don't have the storage space.

debris commented 5 years ago

iirc, we haven't changed anything in the event logging logic since May. I don't know what may be causing problems over here.

andrewheadricke commented 5 years ago

This is hard for me to verify, but it appears that I am getting events for the last week or two and none before then, which was around the time I updated to parity 2.1.1

I wonder if 2.1.1 was not able to retrieve / access the old event logs and is only able to return new logs since updating?

debris commented 5 years ago

nothing has changed in the way logs are stored / retrieved

andrewheadricke commented 5 years ago

So I decided to delete my 150GiB fully synced chain and re-sync to see if the event logs start working again. I'm up to block 4,000,000 and the database on disk is only about 22GiB. So I believe it is doing a fast sync and not storing any of the logs.

Prior to Parity 2.x there was numerous options, but primarily it was:

It appears this middle option is no longer available in Parity 2.x, Parity is no good to me without the logs and I don't have 1.1TiB spare.

Tbaut commented 5 years ago

As @debris says, nothing has changed, warp, no-warp and archive work the same way in 1.11 and 2.x. Please provide concrete examples of what you do for us to be able to troubleshoot.

andrewheadricke commented 5 years ago

I'm re-syncing again with 1.11.1, i'll do some more tests and report back in a few hours.

andrewheadricke commented 5 years ago

Sync'd from scratch with 1.11.1 with --no-warp and can confirm event logs are present and accessible to web3.

I then ran parity 2.0.7 (stable) with the same --no-warp and it says:

Migrating database from version 12 to 13
Migrating blooms to blooms-db...

Now my logs are no longer there, web3 reports no events found.

debris commented 5 years ago

to sum up:

@andrewheadricke is it ok? if yes, it looks like a configuration issue with parity

andrewheadricke commented 5 years ago

That sums it up. The migration from 1.11.1 --no-warp to 2.0.7 --no-warp looses the events.

Note: I haven't checked with archive node. I don't have the space. Edit: I just sync'ed from scratch with 2.1.2 and the logs are present. So the problem appears to be only with the database migration between versions.

epheph commented 5 years ago

I have just run into this issue as well. I had a 1.11.1 with these relevant options:

        --pruning fast --pruning-history 1500 \
        --tracing on \

that was originally fast-sync'd, but had been running for months, so it had fully completed the warp sync.

Then I upgraded to 2.1.4 and it completed the database upgrade, and now eth_getLogs that used to work no longer return data. However, I believe this might be a bloom filter issue. Check this out:

With filter returns no data on my parity node:

curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[ {"fromBlock":"0x5a6da7","toBlock":"0x5a6da7","address":["0x653430560be843c4a3d143d0110e896c2ab8ac0d"],"topics":[["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"]]} ],"id":74}' localhost:8545

{"jsonrpc":"2.0","result":[],"id":74}

Without filter DOES return logs, INCLUDING one that should have matched:

$ curl -s -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[ {"fromBlock":"0x5a6da7","toBlock":"0x5a6da7","topics":[]} ],"id":74}' localhost:8545 | jq .result[15]

{
  "address": "0x653430560be843c4a3d143d0110e896c2ab8ac0d",
  "blockHash": "0x4ff6030cce082be8f5a56d7f7bbe5e32e8d98295f31c8e070285fbdd022a06a7",
  "blockNumber": "0x5a6da7",
  "data": "0x000000000000000000000000000000000000000000000000002386f26fc10000",
  "logIndex": "0xf",
  "removed": false,
  "topics": [
    "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
    "0x000000000000000000000000f37a66726c913ee0b71fc92dc795acab4b1b2c2f",
    "0x0000000000000000000000001f3be8e3ecbe7007a20afc6c546c883f7fdcf650"
  ],
  "transactionHash": "0xdc3b61e081795c7e37fbbd6a663a67867b875065b0ba1a5fdddeee9818805283",
  "transactionIndex": "0x32",
  "transactionLogIndex": "0x0",
  "type": "mined"
}

Hitting a geth node returns the data when using the exact filter above:

$ curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[ {"fromBlock":"0x5a6da7","toBlock":"0x5a6da7","address":["0x653430560be843c4a3d143d0110e896c2ab8ac0d"],"topics":[["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"]]} ],"id":74}' gethnode:8545

{"jsonrpc":"2.0","id":74,"result":[{"add...

From database upgrade:

2018-11-06T19:50:48.040376048Z Migrating database from version 12 to 13
2018-11-06T19:50:48.040427332Z Migrating blooms to blooms-db...
2018-11-06T19:56:21.620663167Z Migration finished
dtran320 commented 5 years ago

We're seeing this issue as well after upgrading from 1.10-7-stable to 2.0.9-stable, running in full archive mode with tracing turned on on Ubuntu 16.04.3 LTS. Like with @epheph, we're seeing that getLogs queries with a filter before a certain block always return empty. Queries for getLogs with a filter for blocks synced after upgrading return as expected.

On parity 2.0.9-stable

curl localhost:8545 -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x300000","toBlock": "0x300000"}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","result":[{"address":"0x48c80f1f4d53d5951e5d5438b54cba84f29f32a5","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000002cad3704cca847b0","logIndex":"0x0","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000008e80c62eca188a450f4479ad83b34b3ca4ac28b9","0x00000000000000000000000090f56bf13b16c0eafcc6210397a30a92f3448429"],"transactionHash":"0x026aefb4693675ed0e5778fb72a7b9aa2725b148b91377543a4b89a0fd8a0d2c","transactionIndex":"0x1","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x000000000000000000000000000000000000000000000000000000000003a881","logIndex":"0x1","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000b3b0fa28d3f7eab8d1d8a76f19d75f29189df508"],"transactionHash":"0x758ac360d18e608001eb71b4f8b48011aefb85ecea3e67cdead319c6370fe623","transactionIndex":"0x3","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000a832e3c915bc000","logIndex":"0x2","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000003912ba694df4fd821a76b0ab384287bd7351be41"],"transactionHash":"0x29c2c537783e452273f77b846b6c770467cba8d296f60c0e40bdc8a49d011045","transactionIndex":"0x5","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000002ace","logIndex":"0x3","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x0000000000000000000000006610edd3c6da806a78c712fccc2fb8cfc0b6b06e"],"transactionHash":"0x0f68fafa819242daae910fb06369aae2160553167e8673254d2e00e72e0fbc08","transactionIndex":"0x7","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000a88827a88858000","logIndex":"0x4","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000003912ba694df4fd821a76b0ab384287bd7351be41"],"transactionHash":"0x000b18a225cb7b1520aaddabc5e39cb492b0a4d9c1d4dd703bac26d2fb4b6153","transactionIndex":"0x8","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x000000000000000000000000000000000000000000000000000000000000054e","logIndex":"0x5","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x00000000000000000000000098ae55bc9878647fa6deca60e3fe88b6f0f9eb24"],"transactionHash":"0xbcceac3b0213fd0390f49ca3a53e0c72334bb46ac7027294437a66b76484228c","transactionIndex":"0x9","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000a832e3c915bc000","logIndex":"0x6","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000003912ba694df4fd821a76b0ab384287bd7351be41"],"transactionHash":"0x53cdb2f9626f88d1b13f9b6a947d61dc986e79cef0d4d25352079694dcd883b6","transactionIndex":"0xa","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000000ab3","logIndex":"0x7","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000964f65391bd485de4dd7c930dfc1c2b79d09b1bf"],"transactionHash":"0x6a8837aa1cd21875d42345dd601f10c20895028a40412243e7cce2165919a72a","transactionIndex":"0xb","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000018de76816d8000","logIndex":"0x8","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000001085a61e20d4f776083c1e99ebc0c3530907c6dc"],"transactionHash":"0x28ef8f53b62cfd0add4249454cd9724b9d0bf46976ab7fcf35dee4b9e6f3fd0d","transactionIndex":"0xc","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000130015","logIndex":"0x9","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000b3b0fa28d3f7eab8d1d8a76f19d75f29189df508"],"transactionHash":"0xa12d9aa31b40170f07d5bcd119e1098240f30cd2ea2a0dc5acedb1257eb97ef7","transactionIndex":"0xd","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000018de76816d8000","logIndex":"0xa","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000001085a61e20d4f776083c1e99ebc0c3530907c6dc"],"transactionHash":"0x3e1c28dbcb3a609d75a5c0fa6420cdc8cd927be04340ac169b90a26ecc76bcfd","transactionIndex":"0xe","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000006b05","logIndex":"0xb","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x0000000000000000000000003ec74962ee86234cd588a44f88b4fa5d2acb71b4"],"transactionHash":"0x8a18d448660370e534b732f07b889369bc0dd11ac6a0c2eb1b40387584a7050e","transactionIndex":"0xf","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000018de76816d8000","logIndex":"0xc","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000001085a61e20d4f776083c1e99ebc0c3530907c6dc"],"transactionHash":"0x1149d22f76aa1b0dcdc09d2f5fb364054c179e291e895243655d813570e65159","transactionIndex":"0x10","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x00000000000000000000000000000000000000000000000000000000000000a0","logIndex":"0xd","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000964f65391bd485de4dd7c930dfc1c2b79d09b1bf"],"transactionHash":"0x3f33c4fcc0d75d96bbc15d50827cdb1f6e4aa5064b940bae5cafde9886f1d02f","transactionIndex":"0x11","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x000000000000000000000000000000000000000000000000031f5c4ed2768000","logIndex":"0xe","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x00000000000000000000000053c560be61f05cdca7f51ec7cda05c96fd4bbe02"],"transactionHash":"0x6a45a4df14425daeae36c14996d4570bd52f1a7f7a265c6d1212bfe7a12cc946","transactionIndex":"0x12","transactionLogIndex":"0x0","type":"mined"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x00000000000000000000000000000000000000000000000000000000000c8a9d","logIndex":"0xf","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000d5cce4e70c8c9dc2cc9cd48f52855e8e96eb990e"],"transactionHash":"0xc7bd145c784f4fed55edf623e13d3525a4fce72b04b0459cc2bf79a0ebaa788a","transactionIndex":"0x13","transactionLogIndex":"0x0","type":"mined"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000002cfde5d2b9d10000","logIndex":"0x10","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x00000000000000000000000053c560be61f05cdca7f51ec7cda05c96fd4bbe02"],"transactionHash":"0x7b27aa8c6466250fdcc79507bdc0a9ed02648a9ded060a36cfc7ec47ee87a760","transactionIndex":"0x14","transactionLogIndex":"0x0","type":"mined"}],"id":1}

But if I add in the topic from the first result above:

curl localhost:8545 -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x300000","toBlock": "0x300000", "topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"]}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","result":[],"id":1}

The same query against Infura (running geth):

curl https://mainnet.infura.io -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x300000","toBlock": "0x300000"}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","id":1,"result":[{"address":"0x48c80f1f4d53d5951e5d5438b54cba84f29f32a5","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000002cad3704cca847b0","logIndex":"0x0","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000008e80c62eca188a450f4479ad83b34b3ca4ac28b9","0x00000000000000000000000090f56bf13b16c0eafcc6210397a30a92f3448429"],"transactionHash":"0x026aefb4693675ed0e5778fb72a7b9aa2725b148b91377543a4b89a0fd8a0d2c","transactionIndex":"0x1"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x000000000000000000000000000000000000000000000000000000000003a881","logIndex":"0x1","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000b3b0fa28d3f7eab8d1d8a76f19d75f29189df508"],"transactionHash":"0x758ac360d18e608001eb71b4f8b48011aefb85ecea3e67cdead319c6370fe623","transactionIndex":"0x3"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000a832e3c915bc000","logIndex":"0x2","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000003912ba694df4fd821a76b0ab384287bd7351be41"],"transactionHash":"0x29c2c537783e452273f77b846b6c770467cba8d296f60c0e40bdc8a49d011045","transactionIndex":"0x5"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000002ace","logIndex":"0x3","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x0000000000000000000000006610edd3c6da806a78c712fccc2fb8cfc0b6b06e"],"transactionHash":"0x0f68fafa819242daae910fb06369aae2160553167e8673254d2e00e72e0fbc08","transactionIndex":"0x7"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000a88827a88858000","logIndex":"0x4","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000003912ba694df4fd821a76b0ab384287bd7351be41"],"transactionHash":"0x000b18a225cb7b1520aaddabc5e39cb492b0a4d9c1d4dd703bac26d2fb4b6153","transactionIndex":"0x8"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x000000000000000000000000000000000000000000000000000000000000054e","logIndex":"0x5","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x00000000000000000000000098ae55bc9878647fa6deca60e3fe88b6f0f9eb24"],"transactionHash":"0xbcceac3b0213fd0390f49ca3a53e0c72334bb46ac7027294437a66b76484228c","transactionIndex":"0x9"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000a832e3c915bc000","logIndex":"0x6","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000003912ba694df4fd821a76b0ab384287bd7351be41"],"transactionHash":"0x53cdb2f9626f88d1b13f9b6a947d61dc986e79cef0d4d25352079694dcd883b6","transactionIndex":"0xa"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000000ab3","logIndex":"0x7","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000964f65391bd485de4dd7c930dfc1c2b79d09b1bf"],"transactionHash":"0x6a8837aa1cd21875d42345dd601f10c20895028a40412243e7cce2165919a72a","transactionIndex":"0xb"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000018de76816d8000","logIndex":"0x8","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000001085a61e20d4f776083c1e99ebc0c3530907c6dc"],"transactionHash":"0x28ef8f53b62cfd0add4249454cd9724b9d0bf46976ab7fcf35dee4b9e6f3fd0d","transactionIndex":"0xc"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000130015","logIndex":"0x9","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000b3b0fa28d3f7eab8d1d8a76f19d75f29189df508"],"transactionHash":"0xa12d9aa31b40170f07d5bcd119e1098240f30cd2ea2a0dc5acedb1257eb97ef7","transactionIndex":"0xd"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000018de76816d8000","logIndex":"0xa","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000001085a61e20d4f776083c1e99ebc0c3530907c6dc"],"transactionHash":"0x3e1c28dbcb3a609d75a5c0fa6420cdc8cd927be04340ac169b90a26ecc76bcfd","transactionIndex":"0xe"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000000000000006b05","logIndex":"0xb","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x0000000000000000000000003ec74962ee86234cd588a44f88b4fa5d2acb71b4"],"transactionHash":"0x8a18d448660370e534b732f07b889369bc0dd11ac6a0c2eb1b40387584a7050e","transactionIndex":"0xf"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000000018de76816d8000","logIndex":"0xc","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x0000000000000000000000001085a61e20d4f776083c1e99ebc0c3530907c6dc"],"transactionHash":"0x1149d22f76aa1b0dcdc09d2f5fb364054c179e291e895243655d813570e65159","transactionIndex":"0x10"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x00000000000000000000000000000000000000000000000000000000000000a0","logIndex":"0xd","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000964f65391bd485de4dd7c930dfc1c2b79d09b1bf"],"transactionHash":"0x3f33c4fcc0d75d96bbc15d50827cdb1f6e4aa5064b940bae5cafde9886f1d02f","transactionIndex":"0x11"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x000000000000000000000000000000000000000000000000031f5c4ed2768000","logIndex":"0xe","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x00000000000000000000000053c560be61f05cdca7f51ec7cda05c96fd4bbe02"],"transactionHash":"0x6a45a4df14425daeae36c14996d4570bd52f1a7f7a265c6d1212bfe7a12cc946","transactionIndex":"0x12"},{"address":"0xedbaf3c5100302dcdda53269322f3730b1f0416d","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x00000000000000000000000000000000000000000000000000000000000c8a9d","logIndex":"0xf","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000cf62dfc079c5d594c257c8fcc0bc2334d17595e1","0x000000000000000000000000d5cce4e70c8c9dc2cc9cd48f52855e8e96eb990e"],"transactionHash":"0xc7bd145c784f4fed55edf623e13d3525a4fce72b04b0459cc2bf79a0ebaa788a","transactionIndex":"0x13"},{"address":"0x37a9679c41e99db270bda88de8ff50c0cd23f326","blockHash":"0x73911e1ac04255d7775f2feb4d3fd92754ca5d5f628b9fc8f75378b487232d2b","blockNumber":"0x300000","data":"0x0000000000000000000000000000000000000000000000002cfde5d2b9d10000","logIndex":"0x10","removed":false,"topics":["0x8b0c34a52f9e28d78caaa7066cd047b398dae74941a208b77777420f492bd7e1","0x0000000000000000000000009e0b9ddba97dd4f7addab0b5f67036eebe687606","0x00000000000000000000000053c560be61f05cdca7f51ec7cda05c96fd4bbe02"],"transactionHash":"0x7b27aa8c6466250fdcc79507bdc0a9ed02648a9ded060a36cfc7ec47ee87a760","transactionIndex":"0x14"}]}

Querying newer blocks appears to be fine

On one of our nodes that we upgraded from 1.10.7-stable to 2.0.9-stable last Thursday around 10:30am PST, queries for block 0x666510 (6710544) or newer with a filter appears to work fine. That block is from November 15 around 10:30am PST, which seems to be in line with the theory that the database migration broke this query for all existing filter log queries before the upgrade.

curl localhost:8545 -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x666510","toBlock": "0x666510","topics":["0x23919512b2162ddc59b67a65e3b03c419d4105366f7d4a632f5d3c3bee9b1cff"]}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","result":[{"address":"0x209c4784ab1e8183cf58ca33cb740efbf3fc18ef","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000032be343b94f860124dc4fee278fdcbd38c102d88","logIndex":"0x0","removed":false,"topics":["0x23919512b2162ddc59b67a65e3b03c419d4105366f7d4a632f5d3c3bee9b1cff"],"transactionHash":"0x946446b51a6d844ef737338b09406fd97669ab941830b9c8f582cdf06677d3f2","transactionIndex":"0x7","transactionLogIndex":"0x0","type":"mined"},{"address":"0x64b3340cb6278d9681ff0be418a3af104f7dfe87","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000209c4784ab1e8183cf58ca33cb740efbf3fc18ef","logIndex":"0x1","removed":false,"topics":["0x23919512b2162ddc59b67a65e3b03c419d4105366f7d4a632f5d3c3bee9b1cff"],"transactionHash":"0x946446b51a6d844ef737338b09406fd97669ab941830b9c8f582cdf06677d3f2","transactionIndex":"0x7","transactionLogIndex":"0x1","type":"mined"},{"address":"0x8dd5fbce2f6a956c3022ba3663759011dd51e73e","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000002b037a7c6b5eadd9c00","logIndex":"0x2","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000009ba1a776b4424e66a1cb75a2792d556f5f029c2d","0x00000000000000000000000072bcfa6932feacd91cb2ea44b0731ed8ae04d0d3"],"transactionHash":"0x0192c04b940c4217340969189d7ea8a9a835d2fa30afd8a5a27bcf860102ceb0","transactionIndex":"0x21","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000d8c41defbcc038ced2edae5253b01221709546b8","logIndex":"0x3","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xfba476eb96d47f261d6f70cf06921dbf7ab028fe32aa92098271384d4458ce68","transactionIndex":"0x22","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000004753eef54d36b19eb776e393297391e6a4a6f8d0","logIndex":"0x4","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xe8e1761de3d39c43d3d996df4641845c5a1a6501863dc7da9ada16b59fa0c087","transactionIndex":"0x23","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000013ec4aafc8ccc3396ac59de6d4000ddc14e69a1f","logIndex":"0x5","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xbcb535d7800e1c5cc30f534c732ca2f6162de0adaeca7e6e8d12e247d881c227","transactionIndex":"0x24","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000e800aac5ae3e7aa93aadebeec08fd8b3d9141666","logIndex":"0x6","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x3fe045c80a28aa1c444e58dac9bac98960f8a8fbc441e31ed6e3d38918633234","transactionIndex":"0x25","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000e766d2f40796b17275aad0162cefa9334ec0a8b9","logIndex":"0x7","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x48cd58219bc00008cecee5626339c03bead2d7ef09190ce2e52ae8a9871a82a1","transactionIndex":"0x26","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000635b6ff7937660b704696214e3e8b7ead48eadc5","logIndex":"0x8","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x9bb40e84bd266cbfb0e7c1da0013c6994d6585559f6a131e51826a0fc4b852e4","transactionIndex":"0x27","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000009f8b2b9f4751d76d0278ae3c7abd3afccccbcc20","logIndex":"0x9","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x8c1c6db6bc13ccd7ec983b224b20f0a1e255ebe7b90d832134075e9bf38b56bd","transactionIndex":"0x28","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000004f771f4f4aece812d9d7be3a85a6d6a9ee720ce8","logIndex":"0xa","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xad055ecf05b5a31e3daddec26df0ebb76ab5cb1dca9156e66779e8d078e3b8e0","transactionIndex":"0x29","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000002a4d12ada079bd9e7684c5369ee980a034eea663","logIndex":"0xb","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xcc2823ac72e814f32952ba336fec09b75c476c3c10123efd0817173c5d041411","transactionIndex":"0x2a","transactionLogIndex":"0x0","type":"mined"},{"address":"0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000005150ae84a8cdf000000","logIndex":"0xc","removed":false,"topics":["0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","0x000000000000000000000000008a68b6d6e63824f1cde554a26c57632b1b64d3","0x0000000000000000000000008a3b7094e1d80c8366b4687cb85862311c931c52"],"transactionHash":"0x3e40be61ac045407523cf9248083cba2694be53d2483c6e0734dcee52d19f4bb","transactionIndex":"0x2b","transactionLogIndex":"0x0","type":"mined"},{"address":"0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000005150ae84a8cdf000000","logIndex":"0xd","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000008a68b6d6e63824f1cde554a26c57632b1b64d3","0x0000000000000000000000008a3b7094e1d80c8366b4687cb85862311c931c52"],"transactionHash":"0x3e40be61ac045407523cf9248083cba2694be53d2483c6e0734dcee52d19f4bb","transactionIndex":"0x2b","transactionLogIndex":"0x1","type":"mined"},{"address":"0x8a3b7094e1d80c8366b4687cb85862311c931c52","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000005150ae84a8cdf00000000000000000000000000000000000000000000000000000000000000000000770000000000000000000000000000000000000000000000000000000000000034616b5f6e5733544b51334e4b715658644b4e67536778484d4132596e6576626943755946504646633450617251776a345234704c000000000000000000000000","logIndex":"0xe","removed":false,"topics":["0x750a9579a45dea376a35c93ce214a7a9a46af18fb438069f8f734ab75891afb0","0x000000000000000000000000008a68b6d6e63824f1cde554a26c57632b1b64d3","0x0000000000000000000000000000000000000000000000000000000000000000"],"transactionHash":"0x3e40be61ac045407523cf9248083cba2694be53d2483c6e0734dcee52d19f4bb","transactionIndex":"0x2b","transactionLogIndex":"0x2","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000075771dedde9707fbb78d9f0dbdc8a4d4e778479400000000000000000000000000000000000000000000000000000000001215f6000000000000000000000000000000000000000000000000000000000012111300000000000000000000000000000000000000000000000000000000001210d20000122895b90e32d617ac4b730a851ce788e4319f6b38846781a3130f34d094","logIndex":"0xf","removed":false,"topics":["0x0a5311bd2a6608f08a180df2ee7c5946819a649b204b554bb8e39825b2c50ad5"],"transactionHash":"0xf72ca07b372473abde7b7c89f4a577fcc54e3d537f994f453ec3b721f912603e","transactionIndex":"0x2c","transactionLogIndex":"0x0","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075771dedde9707fbb78d9f0dbdc8a4d4e778479400000000000000000000000000000000000000000000000000000000001215f6","logIndex":"0x10","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"],"transactionHash":"0xf72ca07b372473abde7b7c89f4a577fcc54e3d537f994f453ec3b721f912603e","transactionIndex":"0x2c","transactionLogIndex":"0x1","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000820c05573071b4d251fbcce35a907d858ed6c6a600000000000000000000000000000000000000000000000000000000001215f7000000000000000000000000000000000000000000000000000000000012073d000000000000000000000000000000000000000000000000000000000011549c0000224000ad4a00dce39d216288b280e832c225a5ef3b40003005294cc60400","logIndex":"0x11","removed":false,"topics":["0x0a5311bd2a6608f08a180df2ee7c5946819a649b204b554bb8e39825b2c50ad5"],"transactionHash":"0xf72ca07b372473abde7b7c89f4a577fcc54e3d537f994f453ec3b721f912603e","transactionIndex":"0x2c","transactionLogIndex":"0x2","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000820c05573071b4d251fbcce35a907d858ed6c6a600000000000000000000000000000000000000000000000000000000001215f7","logIndex":"0x12","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"],"transactionHash":"0xf72ca07b372473abde7b7c89f4a577fcc54e3d537f994f453ec3b721f912603e","transactionIndex":"0x2c","transactionLogIndex":"0x3","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000056ec15bd7268d71154809dfc504238116813950200000000000000000000000000000000000000000000000000000000001215f800000000000000000000000000000000000000000000000000000000001155da000000000000000000000000000000000000000000000000000000000011f5320000604474098b7300a71dec23105424a510c6d53dec680eb6900c18c4f20504","logIndex":"0x13","removed":false,"topics":["0x0a5311bd2a6608f08a180df2ee7c5946819a649b204b554bb8e39825b2c50ad5"],"transactionHash":"0xf72ca07b372473abde7b7c89f4a577fcc54e3d537f994f453ec3b721f912603e","transactionIndex":"0x2c","transactionLogIndex":"0x4","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056ec15bd7268d71154809dfc504238116813950200000000000000000000000000000000000000000000000000000000001215f8","logIndex":"0x14","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"],"transactionHash":"0xf72ca07b372473abde7b7c89f4a577fcc54e3d537f994f453ec3b721f912603e","transactionIndex":"0x2c","transactionLogIndex":"0x5","type":"mined"},{"address":"0x47d1a59cbdd19aee060c859c0009277e245328ae","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000000000000000000000000004d31f847531c40000","logIndex":"0x15","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000f52aaa83f7a709fa88cce5a8a3912741c1a584f2","0x000000000000000000000000d31bf6cd949dfd82842370a5d271fb2db564ba4d"],"transactionHash":"0x66c93f0dd7bfc0648f30b259ddac3ef6c74d46c38d810cc8b083f0302680820e","transactionIndex":"0x2d","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8dd5fbce2f6a956c3022ba3663759011dd51e73e","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000000000000000000000000021e0c0013070adc0000","logIndex":"0x16","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98","0x0000000000000000000000000ebf970fc1c3f9bc6064d56372e49d922c034ee4"],"transactionHash":"0x5157a86fde9762c9f5ea6a38a46feee6b8479e10f5c5e7f3efdc1ed18dc106dc","transactionIndex":"0x31","transactionLogIndex":"0x0","type":"mined"},{"address":"0xdb8646f5b487b5dd979fac618350e85018f557d4","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000000000000000000000000013da0d2b392c196000","logIndex":"0x17","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000521db06bf657ed1d6c98553a70319a8ddbac75a3","0x000000000000000000000000af0cdb857defb9524afd8d52cf0a10058b48e2ac"],"transactionHash":"0x9abd1f30a411d7e0657494ff66420a74cc8ce677e293ed8ed79018641eee830d","transactionIndex":"0x35","transactionLogIndex":"0x0","type":"mined"},{"address":"0xf3db7560e820834658b590c96234c333cd3d5e5e","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000000000000000000000000003635c9adc5dea00000","logIndex":"0x18","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000004e2ce99ad68ad55a51c12d983fe06ed0c9497af5","0x000000000000000000000000faa68ee0df6bc5e6a2174e7df2ec252931302e60"],"transactionHash":"0x339a5c03eb9bd5f5245c394a792f90118b05c1f06715a6116b3bc52ba6f44d6c","transactionIndex":"0x38","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8eb24319393716668d768dcec29356ae9cffe285","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000000028d868151aa","logIndex":"0x19","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x00000000000000000000000032e567e8b527d3194c60ea3c6a5c009d58a0b36d","0x0000000000000000000000004c683aae0d1150c146821adca8c930b9c734ca3a"],"transactionHash":"0x3b4d8aea5fba57f0e570f053e9f9c0aae674200803cebc9a564e4108fcd9456d","transactionIndex":"0x3a","transactionLogIndex":"0x0","type":"mined"},{"address":"0xd9c8ae68aa8ff1f4eaf8c76d3ca56f00149d6771","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000000000000000000000000008ed886a6f5b150000","logIndex":"0x1a","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000002cefcf6a903d863ae5795fd842e2ec4d0361dd37","0x00000000000000000000000005c2989d6f72eab663a9dcb31d7b7a5e9e5a9701"],"transactionHash":"0x97f39c90ee309fb533ba017a6e16de00099138d43ca68236e96f840d2a86a024","transactionIndex":"0x40","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8eb24319393716668d768dcec29356ae9cffe285","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000000003af6f8be80","logIndex":"0x1b","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000564286362092d8e7936f0549571a803b203aaced","0x000000000000000000000000313b7dbd21adda2e5ca55d430b080f191b08329f"],"transactionHash":"0x73f9c33e64610b32e1c6845a76fe3f6f3113ab664de294836dde9a9e421bdce0","transactionIndex":"0x41","transactionLogIndex":"0x0","type":"mined"},{"address":"0xb8c77482e45f1f44de1745f52c74426c631bdd52","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000000000000000000000000000f715d8bb1ad870000","logIndex":"0x1c","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000564286362092d8e7936f0549571a803b203aaced","0x000000000000000000000000fd10da62e80961f042f01805b80e0e173fbde030"],"transactionHash":"0xb772a70e08ae9b7a6fc47a4a4a6706961e0bc57f57dfac1e100943e5b66f7f8d","transactionIndex":"0x42","transactionLogIndex":"0x0","type":"mined"},{"address":"0xf433089366899d83a9f26a773d59ec7ecf30355e","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000000008561b67d80","logIndex":"0x1d","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000000681d8db095565fe8a346fa0277bffde9c0edbbf","0x00000000000000000000000018d53eb35f50bf7b7a75652c429e444f936598c8"],"transactionHash":"0x7e96b7d2b26b4c0280470d43c0f838eed17f609f50e47da233ba2d60cd9fe887","transactionIndex":"0x46","transactionLogIndex":"0x0","type":"mined"},{"address":"0xdf141842cc2c46ad578bb099cfca17a95b948f4c","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000000000000000000000000000000000000000097e","logIndex":"0x1e","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000000000000000000000000000000000000000000000","0x000000000000000000000000871efc248afb639e2edcc40400356d9964b5a74c"],"transactionHash":"0x96e7d9ac577dc1b34f0b8a7b73f3b1796ce71d1756622f7c8f37df57123cdb69","transactionIndex":"0x4b","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8d12a197cb00d4747a1fe03395095ce2a5cc6819","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000003597bfd533a99c9aa083587b074434e61eb0a25800000000000000000000000000000000000000000000000000000005e9a88bb20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b18a66c59c67c0000000000000000000000007369bb9252a75f6699c983a8d923aadfb85659ae000000000000000000000000d4209ca5eb53a66759ed2fbe921a7a50bf3b0d8e","logIndex":"0x1f","removed":false,"topics":["0x6effdda786735d5033bfad5f53e5131abcced9e52be6c507b62d639685fbed6d"],"transactionHash":"0x151e1dfaff4a62055c2a20780e8d2b3a8760029e60ea962cb26ac5e2c92c1a35","transactionIndex":"0x4e","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8d12a197cb00d4747a1fe03395095ce2a5cc6819","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000003597bfd533a99c9aa083587b074434e61eb0a2580000000000000000000000000000000000000000000000000000000d813e0420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000181088ae01b5800000000000000000000000009a7f24aeaef54679babbfb341002bbe51581adf1000000000000000000000000d4209ca5eb53a66759ed2fbe921a7a50bf3b0d8e","logIndex":"0x20","removed":false,"topics":["0x6effdda786735d5033bfad5f53e5131abcced9e52be6c507b62d639685fbed6d"],"transactionHash":"0xca4acc629063f4145fc08d61c3d1a172ec248d8cde0d493ee2ec2204cf571a04","transactionIndex":"0x4f","transactionLogIndex":"0x0","type":"mined"},{"address":"0xd850942ef8811f2a866692a623011bde52a462c1","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000de0b6b3a7640000","logIndex":"0x21","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000d2842acffff364b7653a10761e58640d9a3d6201","0x000000000000000000000000d2901a6443caa2625f93ae0933812bff5a4f5f26"],"transactionHash":"0xb220a8beb6729bf63c661bc5379d3e3c3039772fefd6d21d5c76a82d583088e1","transactionIndex":"0x50","transactionLogIndex":"0x0","type":"mined"},{"address":"0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000000000000000000000000000006f05b59d3b20000","logIndex":"0x22","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000000016bd4cb70bd98ca07a341da66450b5d22a55aa","0x00000000000000000000000014fbca95be7e99c15cc2996c6c9d841e54b79425"],"transactionHash":"0x495c61782b6b394bdd35a2e3d19b4c2b215290e464d921f8181227eea8948ed4","transactionIndex":"0x52","transactionLogIndex":"0x0","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000000000000023d60","logIndex":"0x23","removed":false,"topics":["0xa2c251311b1a7a475913900a2a73dc9789a21b04bc737e050bbc506dd4eb3488"],"transactionHash":"0x495c61782b6b394bdd35a2e3d19b4c2b215290e464d921f8181227eea8948ed4","transactionIndex":"0x52","transactionLogIndex":"0x1","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000015cd3c3ae618da4b000000000000000000000000000000000000000000000000000000005bedbc41","logIndex":"0x24","removed":false,"topics":["0x773ff502687307abfa024ac9f62f9752a0d210dac2ffd9a29e38e12e2ea82c82","0x0000000000000000000000000000000000000000000000000000000000023d60","0x203e3b62e033f1548774797f9135c574dddd995f86e1c55fe1bab1610d35094f","0x0000000000000000000000000016bd4cb70bd98ca07a341da66450b5d22a55aa"],"transactionHash":"0x495c61782b6b394bdd35a2e3d19b4c2b215290e464d921f8181227eea8948ed4","transactionIndex":"0x52","transactionLogIndex":"0x2","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x0000000000000000000000000000000000000000000000000000000000023d60","logIndex":"0x25","removed":false,"topics":["0x20fb9bad86c18f7e22e8065258790d9416a7d2df8ff05f80f82c46d38b925acd"],"transactionHash":"0x495c61782b6b394bdd35a2e3d19b4c2b215290e464d921f8181227eea8948ed4","transactionIndex":"0x52","transactionLogIndex":"0x3","type":"mined"},{"address":"0xb2f24c9f1fc6c347057d25ddff01cac496fc0923","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000000000000000000000000003635c9adc5dea00000","logIndex":"0x26","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000dfeae377830eac8c4eb150b1fc5db9672e1ef341","0x000000000000000000000000356d8f15e40f4e61cd51e9861ae66e08c54a9fb6"],"transactionHash":"0x13efc73cdc66b19ed50d28d86f51cb3c54b03bf7c9affaace0739abd32cae751","transactionIndex":"0x5d","transactionLogIndex":"0x0","type":"mined"}],"id":1}

Querying by one of the topics that appears above, we get the expected result:

curl localhost:8545 -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x666510","toBlock": "0x666510","topics":["0x23919512b2162ddc59b67a65e3b03c419d4105366f7d4a632f5d3c3bee9b1cff"]}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","result":[{"address":"0x209c4784ab1e8183cf58ca33cb740efbf3fc18ef","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x00000000000000000000000032be343b94f860124dc4fee278fdcbd38c102d88","logIndex":"0x0","removed":false,"topics":["0x23919512b2162ddc59b67a65e3b03c419d4105366f7d4a632f5d3c3bee9b1cff"],"transactionHash":"0x946446b51a6d844ef737338b09406fd97669ab941830b9c8f582cdf06677d3f2","transactionIndex":"0x7","transactionLogIndex":"0x0","type":"mined"},{"address":"0x64b3340cb6278d9681ff0be418a3af104f7dfe87","blockHash":"0x5e00184afed35b7c5e6ea82e20e258976511e9e85e531118139b6a886df92bee","blockNumber":"0x666510","data":"0x000000000000000000000000209c4784ab1e8183cf58ca33cb740efbf3fc18ef","logIndex":"0x1","removed":false,"topics":["0x23919512b2162ddc59b67a65e3b03c419d4105366f7d4a632f5d3c3bee9b1cff"],"transactionHash":"0x946446b51a6d844ef737338b09406fd97669ab941830b9c8f582cdf06677d3f2","transactionIndex":"0x7","transactionLogIndex":"0x1","type":"mined"}],"id":1}

If I query one block earlier for 0x666509:

curl localhost:8545 -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x666509","toBlock": "0x666509"}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","result":[{"address":"0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000","logIndex":"0x0","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000f51a8cee8d3e9dc1764d2b6ef3fad973ebdb0ec5","0x000000000000000000000000c0e167f7518f10f69d78fabb89b3f091060a72a1"],"transactionHash":"0xd742fa96291c74990078fd4770dddb9b5db9afbe1c4419c758884eefb21ecaca","transactionIndex":"0x0","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000001d606351c2a23d881b0d5839c1bc89f3fdf1b329","logIndex":"0x1","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x6a27ba8bc7f657e3378d488782a00e385cf8e96b85baab557e64928f2c8191ee","transactionIndex":"0x1","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000114f7017089faaa2e862bd722d6ad792949e15a5","logIndex":"0x2","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xad4112c218d09844d6b2e9df4da2fed11120f915042e175ddf3136669f9b6924","transactionIndex":"0x2","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000065d335fcac060eec72dacc2f22cc8d789c8b3365","logIndex":"0x3","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x7b025cde363e4e50493374e9c4ff54eea63bdf372b98f529a0b495edf29347bd","transactionIndex":"0x3","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000ef6624fc673171d717db4478cdcee5ecf75c87cf","logIndex":"0x4","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x3d8c21b799633a866347ab83640590b68454ca4398846d094bc6b0dc05497805","transactionIndex":"0x4","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000004919595f506eb051f8ae24ac185535ea85fec468","logIndex":"0x5","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x2ada477f7534742e0b93977f51b72c9fe9827b723c87ddb7510a7836d5caf110","transactionIndex":"0x5","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000009507b84f01a3e40232961c18cb52d394745525d1","logIndex":"0x6","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x84d933db47c85830b63bb855198c58a1d22bc34fddfc772eb89c6bafc681ae56","transactionIndex":"0x6","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000004bea2ffaeedb71a81a0085d9c4e07ac5c7fc2fe7","logIndex":"0x7","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x24622f2be002de01356647d011b751b95d9a2a0366b03d9f5412a7b1c49dbe47","transactionIndex":"0x7","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000cf8a9cbfe3a8de408bc9956d3db6c19b5f3d0363","logIndex":"0x8","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0xb6539d433e08986ac64b12637df52840677baf995da26b81bfd43dceaecf66e2","transactionIndex":"0x8","transactionLogIndex":"0x0","type":"mined"},{"address":"0x4f01001cf69785d4c37f03fd87398849411ccbba","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000112a1276c715961cd7faf51a581bbd09bd9ddecf","logIndex":"0x9","removed":false,"topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"],"transactionHash":"0x5b3fc55fd725a98c0e93ffdc6ba23db40767cc442de42aff732df1cfc4d89dd7","transactionIndex":"0x9","transactionLogIndex":"0x0","type":"mined"},{"address":"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000002b5e3af16b1880000","logIndex":"0xa","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000004075e4d4b1ce6c48c81cc940e2bad24b489e64","0x00000000000000000000000014fbca95be7e99c15cc2996c6c9d841e54b79425"],"transactionHash":"0xa80699ffdf50358a1ddc60bd5cd5dae9f2892b2137680e422e187a967870445c","transactionIndex":"0xe","transactionLogIndex":"0x0","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000000000023d5c","logIndex":"0xb","removed":false,"topics":["0xa2c251311b1a7a475913900a2a73dc9789a21b04bc737e050bbc506dd4eb3488"],"transactionHash":"0xa80699ffdf50358a1ddc60bd5cd5dae9f2892b2137680e422e187a967870445c","transactionIndex":"0xe","transactionLogIndex":"0x1","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000089d24a6b4ccb1b6faa2625fe562bdd9a23260359000000000000000000000000000000000000000000000002b5e3af16b18800000000000000000000000000000000000000000000000001ea3ef88da92cff8800000000000000000000000000000000000000000000000000000000005bedbbb6","logIndex":"0xc","removed":false,"topics":["0x773ff502687307abfa024ac9f62f9752a0d210dac2ffd9a29e38e12e2ea82c82","0x0000000000000000000000000000000000000000000000000000000000023d5c","0x9dd48110dcc444fdc242510c09bbbbe21a5975cac061d82f7b843bce061ba391","0x000000000000000000000000004075e4d4b1ce6c48c81cc940e2bad24b489e64"],"transactionHash":"0xa80699ffdf50358a1ddc60bd5cd5dae9f2892b2137680e422e187a967870445c","transactionIndex":"0xe","transactionLogIndex":"0x2","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000000000023d5c","logIndex":"0xd","removed":false,"topics":["0x20fb9bad86c18f7e22e8065258790d9416a7d2df8ff05f80f82c46d38b925acd"],"transactionHash":"0xa80699ffdf50358a1ddc60bd5cd5dae9f2892b2137680e422e187a967870445c","transactionIndex":"0xe","transactionLogIndex":"0x3","type":"mined"},{"address":"0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000009d8c5221070f0100000","logIndex":"0xe","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000004075e4d4b1ce6c48c81cc940e2bad24b489e64","0x00000000000000000000000014fbca95be7e99c15cc2996c6c9d841e54b79425"],"transactionHash":"0x49b2d5ac9bd2988addbcfa314137dad6611a5f08b748b8444d00b957510d936c","transactionIndex":"0xf","transactionLogIndex":"0x0","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000000000023d5d","logIndex":"0xf","removed":false,"topics":["0xa2c251311b1a7a475913900a2a73dc9789a21b04bc737e050bbc506dd4eb3488"],"transactionHash":"0x49b2d5ac9bd2988addbcfa314137dad6611a5f08b748b8444d00b957510d936c","transactionIndex":"0xf","transactionLogIndex":"0x1","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000089d24a6b4ccb1b6faa2625fe562bdd9a23260359000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000009d8c5221070f010000000000000000000000000000000000000000000000000000e720e9e95508547af000000000000000000000000000000000000000000000000000000005bedbbb6","logIndex":"0x10","removed":false,"topics":["0x773ff502687307abfa024ac9f62f9752a0d210dac2ffd9a29e38e12e2ea82c82","0x0000000000000000000000000000000000000000000000000000000000023d5d","0x10aed75aa327f09ef87e5bdfaedf498ca260499a251ae5e049ddbd5e1633cd9c","0x000000000000000000000000004075e4d4b1ce6c48c81cc940e2bad24b489e64"],"transactionHash":"0x49b2d5ac9bd2988addbcfa314137dad6611a5f08b748b8444d00b957510d936c","transactionIndex":"0xf","transactionLogIndex":"0x2","type":"mined"},{"address":"0x14fbca95be7e99c15cc2996c6c9d841e54b79425","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000000000023d5d","logIndex":"0x11","removed":false,"topics":["0x20fb9bad86c18f7e22e8065258790d9416a7d2df8ff05f80f82c46d38b925acd"],"transactionHash":"0x49b2d5ac9bd2988addbcfa314137dad6611a5f08b748b8444d00b957510d936c","transactionIndex":"0xf","transactionLogIndex":"0x3","type":"mined"},{"address":"0x7cc9e445d7c24043a780c26700889a09a9ea3e3a","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000000000000000d6d80","logIndex":"0x12","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000d72e40ba4260475f367f1fda1b914b857ea8600a","0x000000000000000000000000d19e50baece00038f3fde0e9b770ccbe4032a076"],"transactionHash":"0x3953964cb8805c0f391d10bee12dae438e7cca8639bfdcce02ff303445ddb0c6","transactionIndex":"0x11","transactionLogIndex":"0x0","type":"mined"},{"address":"0x123ab195dd38b1b40510d467a6a359b201af056f","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000000000016b2f0958b","logIndex":"0x13","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000002a0c0dbecc7e4d658f48e01e3fa353f44050c208","0x0000000000000000000000009096410692868ea33f77ff1ca3ae3d9948faf82c"],"transactionHash":"0x59cb349073bff4f8ce2359157342a40222376f60a9c1344d0497f21b47bdbaa5","transactionIndex":"0x14","transactionLogIndex":"0x0","type":"mined"},{"address":"0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000123ab195dd38b1b40510d467a6a359b201af056f0000000000000000000000009096410692868ea33f77ff1ca3ae3d9948faf82c00000000000000000000000000000000000000000000000000000016b2f0958b0000000000000000000000000000000000000000000000000000000000000000","logIndex":"0x14","removed":false,"topics":["0xf341246adaac6f497bc2a656f546ab9e182111d630394f0c57c710a59a2cb567"],"transactionHash":"0x59cb349073bff4f8ce2359157342a40222376f60a9c1344d0497f21b47bdbaa5","transactionIndex":"0x14","transactionLogIndex":"0x1","type":"mined"},{"address":"0x1f772db718238d8413bad9b309950a9c5286fd71","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000160000000000000000000000006f5a7c68c6ab8331cd59dfde01249854fc136ba6000000000000000000000000000000000000000000000000001c6bf526340000","logIndex":"0x15","removed":false,"topics":["0x2053909ff9fc9422c631cb20bc7d231beb7702dd62f9cc86a85ec1a9e9027c7b"],"transactionHash":"0xc2a687816c29483437c4a4a930a3fb91f685915c3582c57d7a7839f69d241ac2","transactionIndex":"0x1b","transactionLogIndex":"0x0","type":"mined"},{"address":"0x6ba460ab75cd2c56343b3517ffeba60748654d26","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000000000000768bd5dc","logIndex":"0x16","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000005ae1cb5a7dcd5f1e7873ad4e416438e9aec97a2a","0x00000000000000000000000049e96a6ea3c8e2be0cea8e83f80031d9862cc23f"],"transactionHash":"0x7a287b90eb3f9243de223b79e93b694cc0291269b92148b7d735ab902d6d86e6","transactionIndex":"0x1c","transactionLogIndex":"0x0","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000075771dedde9707fbb78d9f0dbdc8a4d4e778479400000000000000000000000000000000000000000000000000000000001215f20000000000000000000000000000000000000000000000000000000000120fd20000000000000000000000000000000000000000000000000000000000120fea000012d6b21c06098207904a02500214e51118c210bb529e730e6e522731be94","logIndex":"0x17","removed":false,"topics":["0x0a5311bd2a6608f08a180df2ee7c5946819a649b204b554bb8e39825b2c50ad5"],"transactionHash":"0x1a2b0108afa60d3ff0f6fdfd9c2209e89548b49707d7f575be32a6b2ddf81a10","transactionIndex":"0x1e","transactionLogIndex":"0x0","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075771dedde9707fbb78d9f0dbdc8a4d4e778479400000000000000000000000000000000000000000000000000000000001215f2","logIndex":"0x18","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"],"transactionHash":"0x1a2b0108afa60d3ff0f6fdfd9c2209e89548b49707d7f575be32a6b2ddf81a10","transactionIndex":"0x1e","transactionLogIndex":"0x1","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000f165d353abddb7cb00052d610254249fcc12a8c700000000000000000000000000000000000000000000000000000000001215f30000000000000000000000000000000000000000000000000000000000121322000000000000000000000000000000000000000000000000000000000011cf4d00004b10631c8548d2119e80194650126c2b2c53006b31ec24056516f5a7ad83","logIndex":"0x19","removed":false,"topics":["0x0a5311bd2a6608f08a180df2ee7c5946819a649b204b554bb8e39825b2c50ad5"],"transactionHash":"0x1a2b0108afa60d3ff0f6fdfd9c2209e89548b49707d7f575be32a6b2ddf81a10","transactionIndex":"0x1e","transactionLogIndex":"0x2","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f165d353abddb7cb00052d610254249fcc12a8c700000000000000000000000000000000000000000000000000000000001215f3","logIndex":"0x1a","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"],"transactionHash":"0x1a2b0108afa60d3ff0f6fdfd9c2209e89548b49707d7f575be32a6b2ddf81a10","transactionIndex":"0x1e","transactionLogIndex":"0x3","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000003c30e0ce0bd53978d8bae895e6b378e033ed129e000000000000000000000000000000000000000000000000000000000011efdb00000000000000000000000000000000000000000000000000000000000f28170000000000000000000000000000000000000000000000000000000000666c89","logIndex":"0x1b","removed":false,"topics":["0x241ea03ca20251805084d27d4440371c34a0b85ff108f6bb5611248f73818b80"],"transactionHash":"0x0ef9db946014121f3d594167dd05b7bca7f11f1bbf145e07364fff06e5874f38","transactionIndex":"0x20","transactionLogIndex":"0x0","type":"mined"},{"address":"0x0be3e6e3d9e99036ccce4fd0b692016de860aa62","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x790e3372a4d7fe8836b65fff672eddf9e1129d95b5dcfcd9e63ae99a328e2f4c","logIndex":"0x1c","removed":false,"topics":["0x5bdd2fc99022530157777690475b670d3872f32262eb1d47d9ba8000dad58f87"],"transactionHash":"0x6dd4b4978b767eea1674504692133e1d5296b2d5d9cf43d7d7ac0e6e6a855935","transactionIndex":"0x25","transactionLogIndex":"0x0","type":"mined"},{"address":"0xdecf7be29f8832e9c2ddf0388c9778b8ba76af43","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000020dd68aaf3289100000","logIndex":"0x1d","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x00000000000000000000000024af656ddfe93d8cd387cf58df1b9c7a5cf6d7e5","0x0000000000000000000000002804392645192e79806240b66e45c2aac10057df"],"transactionHash":"0x01eae3b44bef36538460e45cb55a40dbf4fcfc15c26f79fa46f79a50cfcd0943","transactionIndex":"0x26","transactionLogIndex":"0x0","type":"mined"},{"address":"0x017925fdb447544da8ed671b5305461cfc6c6e1d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x","logIndex":"0x1e","removed":false,"topics":["0xc7120a00a251890416360c3add60c9843cb4a5ed80a7761c3b3be917c24f71e2","0x000000000000000000000000000000000000000000000000000000000000acd2","0x000000000000000000000000afd77e5d827b29740cab51d89c8eaaed33eef93b"],"transactionHash":"0x890a87f57e380e9bd52d313e8d16b0420c964c05269c3091a3d569956b8ba415","transactionIndex":"0x28","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8c9b261faef3b3c2e64ab5e58e04615f8c788099","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x","logIndex":"0x1f","removed":false,"topics":["0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","0x000000000000000000000000d9691115ea01a9c066ee8e098e0370e2b35764fd","0x000000000000000000000000e7232a9fd8bf427aa41918bc008d32290e22990e","0x0000000000000000000000000000000000000000000000000000000000022353"],"transactionHash":"0x669d8808508f6a7f1a0f62b302d3c0692713c1c77bfc955989195fb25d142cd5","transactionIndex":"0x29","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8c9b261faef3b3c2e64ab5e58e04615f8c788099","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x","logIndex":"0x20","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000d9691115ea01a9c066ee8e098e0370e2b35764fd","0x000000000000000000000000e7232a9fd8bf427aa41918bc008d32290e22990e","0x0000000000000000000000000000000000000000000000000000000000022353"],"transactionHash":"0x669d8808508f6a7f1a0f62b302d3c0692713c1c77bfc955989195fb25d142cd5","transactionIndex":"0x29","transactionLogIndex":"0x1","type":"mined"},{"address":"0xe7232a9fd8bf427aa41918bc008d32290e22990e","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000000000000000002235300000000000000000000000000000000000000000000000002a303fe4b53000000000000000000000000000000000000000000000000000002a303fe4b5300000000000000000000000000000000000000000000000000000000000000fd2000000000000000000000000000000000000000000000000000000000005bedbbb6","logIndex":"0x21","removed":false,"topics":["0x6688114a9b77bcf97076216092c6794f7c541749631612664980599eaff1f532"],"transactionHash":"0x669d8808508f6a7f1a0f62b302d3c0692713c1c77bfc955989195fb25d142cd5","transactionIndex":"0x29","transactionLogIndex":"0x2","type":"mined"},{"address":"0x017925fdb447544da8ed671b5305461cfc6c6e1d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x","logIndex":"0x22","removed":false,"topics":["0x487f75407abee1a719a204e683a93f0583efee10816d2651b112f8be571f7d32","0x000000000000000000000000000000000000000000000000000000000000ad92","0x000000000000000000000000104aaea43469b7d848d299a62822a26e116f2a89"],"transactionHash":"0xccb2968115ca9c55b9c31b8fa45db6af39d3825be5522a32a6a8f69511524de8","transactionIndex":"0x2a","transactionLogIndex":"0x0","type":"mined"},{"address":"0x8432a5a61cf1cc5ca5bc5ab919d0665427fb513c","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000001f399b1438a100000","logIndex":"0x23","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000008012eb27b9f5ac2b74a975a100f60d2403365871","0x000000000000000000000000f3ba9dbb6adfaa8875c0cc21a14b974400e9d4ca"],"transactionHash":"0x2dcbaae8f3c03e8113f971ccb5388cdb15101e0f82abf646d6959c44a3a1f345","transactionIndex":"0x2b","transactionLogIndex":"0x0","type":"mined"},{"address":"0x017925fdb447544da8ed671b5305461cfc6c6e1d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x","logIndex":"0x24","removed":false,"topics":["0xc7120a00a251890416360c3add60c9843cb4a5ed80a7761c3b3be917c24f71e2","0x000000000000000000000000000000000000000000000000000000000000acd1","0x00000000000000000000000068c216db18d70d7404a81c7fe49bf068915ba992"],"transactionHash":"0x3d84a3e3ba5dcb2519585862ce1ee3cbbb546d3d6d5be3bc2b48fc88615243e6","transactionIndex":"0x2c","transactionLogIndex":"0x0","type":"mined"},{"address":"0x017925fdb447544da8ed671b5305461cfc6c6e1d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x","logIndex":"0x25","removed":false,"topics":["0x487f75407abee1a719a204e683a93f0583efee10816d2651b112f8be571f7d32","0x000000000000000000000000000000000000000000000000000000000000ad93","0x000000000000000000000000c25ab8278395199997e852795c32562a5c749072"],"transactionHash":"0xe7927f0af16fcb12153f84ed4e147cd36c5a64a924b09cd2436b08f1ee17ecb0","transactionIndex":"0x2d","transactionLogIndex":"0x0","type":"mined"},{"address":"0xc47b8d6d6595f7934fc467ded288e1a267d71758","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000000a688906bd8b00000","logIndex":"0x26","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x00000000000000000000000044e9ba8825b06559935caaff5a4d4a932e22f7dc","0x000000000000000000000000d0ccf1e8b4e220f2e1938f4d8f2b9ae15e39af0e"],"transactionHash":"0x6ee81c1b959d52e15598168ad8b6dde14d78ae0cbb97070df16d39956f099ea9","transactionIndex":"0x2e","transactionLogIndex":"0x0","type":"mined"},{"address":"0x59db9fde270b39a07f38fa3106a760829074c7d9","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000004e49e5e291e3c55000","logIndex":"0x27","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000f989a5bd9b262e653728259a5290f6bf2b5c379f","0x000000000000000000000000989fcbc46845a290e971a6303ef3753fb039d8d5"],"transactionHash":"0x7e952469f1f793c05391cdbf35099270ada829104d0897502d1bfd8dc7e4827f","transactionIndex":"0x30","transactionLogIndex":"0x0","type":"mined"},{"address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000009d05c576f27c03d2b0aafe6ac8ac0d1e3e51abf40000000000000000000000000000000000000000000000000000000000115a1e000000000000000000000000000000000000000000000000000000000010789e0000000000000000000000000000000000000000000000000000000000667b89","logIndex":"0x28","removed":false,"topics":["0x241ea03ca20251805084d27d4440371c34a0b85ff108f6bb5611248f73818b80"],"transactionHash":"0x8c607bc8cbfe0541943dcf9ff7fe3884eb492c8cb67bf167827f631b311109db","transactionIndex":"0x31","transactionLogIndex":"0x0","type":"mined"},{"address":"0xdb8646f5b487b5dd979fac618350e85018f557d4","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000001e7e4171bf4d3a00000","logIndex":"0x29","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x00000000000000000000000023d23c9779893fd42d20544e82f7ada518bb9e5c","0x000000000000000000000000bf45f4280cfbe7c2d2515a7d984b8c71c15e82b7"],"transactionHash":"0x6b9a79f0763ca4be430d28675b4bc8218bc567b4dbbf5e09d65a16aefe91a827","transactionIndex":"0x35","transactionLogIndex":"0x0","type":"mined"},{"address":"0xbf45f4280cfbe7c2d2515a7d984b8c71c15e82b7","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000001e7e4171bf4d3a000000000000000000000000000000000000000000000000001e7e4171bf4d3a00000","logIndex":"0x2a","removed":false,"topics":["0xdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7","0x000000000000000000000000db8646f5b487b5dd979fac618350e85018f557d4","0x00000000000000000000000023d23c9779893fd42d20544e82f7ada518bb9e5c"],"transactionHash":"0x6b9a79f0763ca4be430d28675b4bc8218bc567b4dbbf5e09d65a16aefe91a827","transactionIndex":"0x35","transactionLogIndex":"0x1","type":"mined"},{"address":"0xbf45f4280cfbe7c2d2515a7d984b8c71c15e82b7","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000038d7ea4c68000","logIndex":"0x2b","removed":false,"topics":["0xdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7","0x0000000000000000000000000000000000000000000000000000000000000000","0x00000000000000000000000023d23c9779893fd42d20544e82f7ada518bb9e5c"],"transactionHash":"0x6b9a79f0763ca4be430d28675b4bc8218bc567b4dbbf5e09d65a16aefe91a827","transactionIndex":"0x35","transactionLogIndex":"0x2","type":"mined"},{"address":"0xd26114cd6ee289accf82350c8d8487fedb8a0c07","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000270a433f35d3c5af0","logIndex":"0x2c","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x00000000000000000000000063825c174ab367968ec60f061753d3bbd36a0d8f","0x00000000000000000000000091a502c678605fbce581eae053319747482276b9"],"transactionHash":"0x1aa72922fb7327b263ae4d85c3e1fe9f7f0aa70dda71b6adb68a64943e8e8143","transactionIndex":"0x38","transactionLogIndex":"0x0","type":"mined"},{"address":"0x63825c174ab367968ec60f061753d3bbd36a0d8f","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000099a673bf707b000000000000000000000000000d26114cd6ee289accf82350c8d8487fedb8a0c0700000000000000000000000000000000000000000000000270a433f35d3c5af000000000000000000000000091a502c678605fbce581eae053319747482276b9","logIndex":"0x2d","removed":false,"topics":["0xea9415385bae08fe9f6dc457b02577166790cde83bb18cc340aac6cb81b824de","0x00000000000000000000000091a502c678605fbce581eae053319747482276b9"],"transactionHash":"0x1aa72922fb7327b263ae4d85c3e1fe9f7f0aa70dda71b6adb68a64943e8e8143","transactionIndex":"0x38","transactionLogIndex":"0x1","type":"mined"},{"address":"0xd26114cd6ee289accf82350c8d8487fedb8a0c07","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000270a433f35d3c5af0","logIndex":"0x2e","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x00000000000000000000000091a502c678605fbce581eae053319747482276b9","0x000000000000000000000000b9dfc9f3b0d01e6dcbfc0b8dc141de776dca94db"],"transactionHash":"0x1aa72922fb7327b263ae4d85c3e1fe9f7f0aa70dda71b6adb68a64943e8e8143","transactionIndex":"0x38","transactionLogIndex":"0x2","type":"mined"},{"address":"0xed4f53268bfdff39b36e8786247ba3a02cf34b04","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000063825c174ab367968ec60f061753d3bbd36a0d8f0000000000000000000000000000000000000000000000000e679ad9f28b8800","logIndex":"0x2f","removed":false,"topics":["0xf838f6ddc89706878e3c3e698e9b5cbfbf2c0e3d3dcd0bd2e00f1ccf313e0185"],"transactionHash":"0x1aa72922fb7327b263ae4d85c3e1fe9f7f0aa70dda71b6adb68a64943e8e8143","transactionIndex":"0x38","transactionLogIndex":"0x3","type":"mined"},{"address":"0x91a502c678605fbce581eae053319747482276b9","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000b9dfc9f3b0d01e6dcbfc0b8dc141de776dca94db000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000099a673bf707b000000000000000000000000000b9dfc9f3b0d01e6dcbfc0b8dc141de776dca94db000000000000000000000000d26114cd6ee289accf82350c8d8487fedb8a0c0700000000000000000000000000000000000000000000000270a433f35d3c5af0","logIndex":"0x30","removed":false,"topics":["0x1c8399ecc5c956b9cb18c820248b10b634cca4af308755e07cd467655e8ec3c7"],"transactionHash":"0x1aa72922fb7327b263ae4d85c3e1fe9f7f0aa70dda71b6adb68a64943e8e8143","transactionIndex":"0x38","transactionLogIndex":"0x4","type":"mined"},{"address":"0x818e6fecd516ecc3849daf6845e3ec868087b755","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000d26114cd6ee289accf82350c8d8487fedb8a0c07000000000000000000000000000000000000000000000000099a673bf707b00000000000000000000000000000000000000000000000000270a433f35d3c5af0","logIndex":"0x31","removed":false,"topics":["0x1849bd6a030a1bca28b83437fd3de96f3d27a5d172fa7e9c78e7b61468928a39","0x000000000000000000000000b9dfc9f3b0d01e6dcbfc0b8dc141de776dca94db"],"transactionHash":"0x1aa72922fb7327b263ae4d85c3e1fe9f7f0aa70dda71b6adb68a64943e8e8143","transactionIndex":"0x38","transactionLogIndex":"0x5","type":"mined"},{"address":"0x2a1190188c631f9cb49963ab07a4579556f7667b","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000002a1190188c631f9cb49963ab07a4579556f7667b0000000000000000000000004ee9be176742df92af3d32a44f7ce4742e0053fd0000000000000000000000000000000000000000000000000000000000000001","logIndex":"0x32","removed":false,"topics":["0x9ea56af881ffe028f0ad190d981a983e3829992e4ee578085dbe5c3a1c6749f7"],"transactionHash":"0x8299ee53d9790f41406f39d52a4074120e27434f444a758a5c0ca4bab4809975","transactionIndex":"0x39","transactionLogIndex":"0x0","type":"mined"},{"address":"0x46403e94529fc04d04c9c393beab1d050ef06409","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000000022b1c8c1227a0000","logIndex":"0x33","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000004468bab1b1d16ee3b9610f7e16eb25af80f85a39","0x0000000000000000000000004ee9be176742df92af3d32a44f7ce4742e0053fd"],"transactionHash":"0x8299ee53d9790f41406f39d52a4074120e27434f444a758a5c0ca4bab4809975","transactionIndex":"0x39","transactionLogIndex":"0x1","type":"mined"},{"address":"0xee91e81927bb047ea0f4b24e43dd5dc0684827a0","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000000de0b6b3a76400000","logIndex":"0x34","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x000000000000000000000000756b932e80b9e28c3aeb670521fa87bdd21158e0","0x0000000000000000000000005556eea1d12957e5a40bba1ccddd7755124a3dc0"],"transactionHash":"0x8d1dc3b1c657169257ca94c7ea38c8c1f8e89fe259de07672a5acacf59432aca","transactionIndex":"0x3a","transactionLogIndex":"0x0","type":"mined"},{"address":"0x5892aad75a615014aa88c4b621caff1fe45dc850","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000002a512938ef","logIndex":"0x35","removed":false,"topics":["0x8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a77","0x0000000000000000000000005acb839e12147e19d2f0408876fa8a71091c2e82"],"transactionHash":"0x6897fcdadbb943e2c7b0a4b4e2f2eb0a17e1c01135f67274539e96b8f5fbb7ab","transactionIndex":"0x3b","transactionLogIndex":"0x0","type":"mined"},{"address":"0x5892aad75a615014aa88c4b621caff1fe45dc850","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x0000000000000000000000000000000000000000000000000000002a512938ef","logIndex":"0x36","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000000000000000000000000000000000000000000000","0x0000000000000000000000005acb839e12147e19d2f0408876fa8a71091c2e82"],"transactionHash":"0x6897fcdadbb943e2c7b0a4b4e2f2eb0a17e1c01135f67274539e96b8f5fbb7ab","transactionIndex":"0x3b","transactionLogIndex":"0x1","type":"mined"},{"address":"0x6c8dce6d842e0d9d109dc4c69f35cf8904fc4cbf","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x000000000000000000000000000000000000000000000000000000000000031e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005bedbbb6","logIndex":"0x37","removed":false,"topics":["0xb36df898d1bc3cc77dfd139c77654d6c197cf40c91f4c73fa9750602c9de98c8","0x000000000000000000000000983961f34fc4cfc5eafec371cdba9d56ff8c1935"],"transactionHash":"0xccf177645cea394bfa70cc8481a210552f3d9dd9b4a1edb256037677ecbaad9c","transactionIndex":"0x3c","transactionLogIndex":"0x0","type":"mined"},{"address":"0xc327d9f54293e25a44f8b542f742a6ce54723327","blockHash":"0xb1d3725be1558d05ffce8c70bcca3d36f70fba53fed249e9d32d6b42c436675b","blockNumber":"0x666509","data":"0x00000000000000000000000000000000000000000000152d02c7e14af6800000","logIndex":"0x38","removed":false,"topics":["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","0x0000000000000000000000005968c8095eb3457c9f8aaaa553a6e5ba6fbb625f","0x000000000000000000000000697b9af354c872ede0b481d0480ca08e96153477"],"transactionHash":"0xf12dacbdedbad1e960c05ccde232ccfdb8fcb1fbb1213425fea0e80cd20bd08f","transactionIndex":"0x3f","transactionLogIndex":"0x0","type":"mined"}],"id":1}

And again query by one of the topics, we get no result:

curl localhost:8545 -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x666509","toBlock": "0x666509","topics":["0xef4c8685c12779a52dae7549eb7defa8523f67a054ad425b877a6b2da469a331"]}],"id":1}' -H "Content-Type: application/json"
{"jsonrpc":"2.0","result":[],"id":1}
nikilster commented 5 years ago

Hey @joshua-mir could we see a timeline for fixing this huge bug? It's causing major problems for our users and our entire infrastructure. Thank you!!! :)

nikilster commented 5 years ago

We're having to roll our entire infrastructure back to old parity versions.

nikilster commented 5 years ago

Also noticed this doesn't have a F priority on it - @debris seems like its a pretty big issue affecting everyone - how do we add a tag? Thanks!

grittibaenz commented 5 years ago

We are also affected by this issue. It prevents us from upgrading our Parity nodes to version 2.x.x.

Networks:

Settings:

warp = false
tracing = "on"
pruning = "archive"

Upgrade Path:

Logs:

Loading config file from /app/parity/conf/config.toml
Migrating database from version 12 to 13
Migrating blooms to blooms-db...
Migration finished
2018-11-20 17:04:14 UTC Starting Parity-Ethereum/v2.1.6-stable-491f17f-20181114/x86_64-linux-gnu/rustc1.30.1
2018-11-20 17:04:14 UTC Keys path /data/parity/base/keys/classic
2018-11-20 17:04:14 UTC DB path /data/parity/db/classic/db/906a34e69aec8c0d
2018-11-20 17:04:14 UTC State DB configuration: archive +Trace
2018-11-20 17:04:14 UTC Operating mode: active
2018-11-20 17:04:15 UTC Configured for Ethereum Classic using Ethash engine
grittibaenz commented 5 years ago

Remark:

grittibaenz commented 5 years ago

2.0.5-stable

New results from another upgrade attempt to the first stable release (2.0.5-stable).

Update/Upgrade Path:

Query:

{"jsonrpc":"2.0","result":[{"action":{"callType":"call","from":"0xe5fe887bcdfcba0778e0254304399eec4d16646a","gas":"0x0","input":"0x","to":"0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be","value":"0x10d44362101259400"},"blockHash":"0x85c4dda3ee9da6c234537807bdfff85827125a20b37a8aae768ff36b4af5e85c","blockNumber":6935239,"result":{"gasUsed":"0x0","output":"0x"},"subtraces":0,"traceAddress":[],"transactionHash":"0x37ad582acc1e460e549a36e8814c1d0dbf2fe82c0f4b5ee5be9df15da2655722","transactionPosition":23,"type":"call"},{"action":{"callType":"call","from":"0xe5fe887bcdfcba0778e0254304399eec4d16646a","gas":"0x0","input":"0x","to":"0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be","value":"0x22b54feafc6b23800"},"blockHash":"0x43004a6601848b5a963ba0d26a0538f2a781c0c18dac0c78e323c94dfde2053b","blockNumber":6965524,"result":{"gasUsed":"0x0","output":"0x"},"subtraces":0,"traceAddress":[],"transactionHash":"0x6fe5ce2afd62955e6d6717cf195e9ee40288da86f018c0eb4da403edd209dedc","transactionPosition":13,"type":"call"}, <...>


- Query `2.0.5-stable`

curl --noproxy "*" -s -H "Content-Type: application/json" -X POST 1.1.1.1:9000 --data '{"method":"trace_filter", "params": [{ "fromBlock": "0x694920", "toBlock": "latest", "fromAddress": ["0xe5fe887bcdfcba0778e0254304399eec4d16646a"]} ],"id":1,"jsonrpc":"2.0"}'

{"jsonrpc":"2.0","result":[],"id":1}



PS. This is not our address. It's some random address we got from an ETC block explorer
grittibaenz commented 5 years ago

2.0.0-beta

New results from another upgrade attempt to the first beta release (2.0.0-beta).

Update/Upgrade Path:

Query:

{"jsonrpc":"2.0","result":[{"action":{"callType":"call","from":"0xe5fe887bcdfcba0778e0254304399eec4d16646a","gas":"0x0","input":"0x","to":"0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be","value":"0x10d44362101259400"},"blockHash":"0x85c4dda3ee9da6c234537807bdfff85827125a20b37a8aae768ff36b4af5e85c","blockNumber":6935239,"result":{"gasUsed":"0x0","output":"0x"},"subtraces":0,"traceAddress":[],"transactionHash":"0x37ad582acc1e460e549a36e8814c1d0dbf2fe82c0f4b5ee5be9df15da2655722","transactionPosition":23,"type":"call"},{"action":{"callType":"call","from":"0xe5fe887bcdfcba0778e0254304399eec4d16646a","gas":"0x0","input":"0x","to":"0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be","value":"0x22b54feafc6b23800"},"blockHash":"0x43004a6601848b5a963ba0d26a0538f2a781c0c18dac0c78e323c94dfde2053b","blockNumber":6965524,"result":{"gasUsed":"0x0","output":"0x"},"subtraces":0,"traceAddress":[],"transactionHash":"0x6fe5ce2afd62955e6d6717cf195e9ee40288da86f018c0eb4da403edd209dedc","transactionPosition":13,"type":"call"}, <...>


- Query `2.0.0-beta`

curl --noproxy "*" -s -H "Content-Type: application/json" -X POST 1.1.1.1:9000 --data '{"method":"trace_filter", "params": [{ "fromBlock": "0x694920", "toBlock": "latest", "fromAddress": ["0xe5fe887bcdfcba0778e0254304399eec4d16646a"]} ],"id":1,"jsonrpc":"2.0"}'

{"jsonrpc":"2.0","result":[],"id":1}



PS. This is not our address. It's some random address we got from an ETC block explorer
bb324930 commented 5 years ago

Can confirm here: https://github.com/paritytech/parity-ethereum/issues/9983

I tried with a full archival, trace node with no pruning and can also confirm the bloomdb migration in 2.x.x series completely breaks the eth_getLogs RPC call.

grittibaenz commented 5 years ago

It seems like we have to resync all our nodes. From Gitter:

@Tbaut: TBH I don't think we'll be able to provide a quick fix for that one. A full sync taxes a while but it's probably the best bet for now.

Glad the world economy is not yet depending on ETH and Parity, but our product/infrastructure does. We would be thankful if this issue gets addressed soon.

5chdn commented 5 years ago

Even if we would identify the underlying bug and fix it, you would still have to resync your chain. So, if you need the logs now, please resync your client with version 2.1.7 or 2.2.1!

grittibaenz commented 5 years ago

Our production nodes are still running on 1.11.11-stable. We identified this issue with a test upgrade of a testnet node a couple of weeks ago. We can wait for a new release to fix this issue, as version 1.x.x is working well. An alternative is of course waiting 6 weeks for ETH to be synchronized again.

Edit: I am happy to help with testing and troubleshooting, but I cannot provide a fix. We don't have Rust developers and the resources in our team.

grittibaenz commented 5 years ago

@5chdn and @ngotchac: many thanks for working on this issue! please let me know, if (and how) I can help you testing this patch.

Tbaut commented 5 years ago

You have to git clone Parity Ethereum repo, checkout the ng-bloom-db branch and build from the sources.

nikilster commented 5 years ago

Appreciate the help guys! Was a painful issue - prob cost us $25k :/ Is there a way to get these triaged faster in the future?

5chdn commented 5 years ago

@nikilster for business inquiries you can always shoot us a mail at info@parity.io

bb324930 commented 5 years ago

Would this patch work out of the box on the upgraded 2.x.x bloomdb? Or would it work from an un-upgraded 1.11.1 style bloomdb that gets migrated to the now (correct) format?

Or none of the above, and require a full resync starting from compiled ng-bloom-db branch?

ngotchac commented 5 years ago

So the fix would require a full resync if you already have migrated to 2.x ; if you still have a 1.x DB, then running with the fix against this DB should properly migrate the blooms. The issue was that the migration script was broken, so it migrated blooms to the wrong place. There is no way to undo that sadly :/

grittibaenz commented 5 years ago

@parity-devs: many thanks again for working on this. I just wanted to report back that the new stable version 2.1.8 is working well. The blooms-db migration is successful now. Thank you!

AC0DEM0NK3Y commented 5 years ago

I just discovered this after compiling parity with a bunch of logs to track it down to the bloom filtering.

I just want to be double sure, there is no possible recovery from this state?

I have an archive + traces node here that would need to be started from scratch, obviously that is a lot of time to wait. I'd prefer a code solution to this if it's possible to move those blooms back to the right place.

grittibaenz commented 5 years ago

@AC0DEM0NK3Y: As far as I know, there is no way to recover the blooms. We were lucky enough to find the problem in ETH Ropsten (and have 2 archiving + traces nodes). Due to so many bugs (in Geth, Parity, BCHABC, IOTA, ElectrumX...) we started to create daily snapshots and snapshots before any update/upgrade. This is sadly all I can recommend :(

edevil commented 5 years ago

I have a private blockchain composed of 3 parity nodes running the AuthorityRound engine in fast mode. While bringing the node versions up do date from 1.10 onwards, the 1.11->2.0 migration caused contract logs to be lost. I've since upgraded all the way to 2.3.5.

Is there anyway to make the nodes re-calculate the bloom filters?

megahz2 commented 4 years ago

Q1. I don't see a resolution here, is there one?

I have been unable to run paity 2.0 and up since this issue. I have deleted database and everything but my keystore and config.toml #in. C:\Users\username\AppData\Roaming\Parity\Ethereum and everything where I store the db G:\folder\Parity\

Q2. I miss the client side GUI, parity UI, Is there a way to use, what are risks if firewalled? Q3. why no parity ui new maintainer still? what is the maintainers responsibilities? https://wiki.parity.io/Parity-Wallet

Thank You for your time and efforts!!

jam10o-new commented 4 years ago

q1) no - if information was lost you need to resync unfortunately.

q2) the Wallet UI is not compatible at all with recent versions of parity-ethereum. it is largely unfunctional when connected to a "compatible" version as well. All public chains currently require versions of parity that do not support the UI at all.

3) A maintainer would have to keep libraries and dependencies up to date, change the rpc methods the UI calls to ones supported by modern parity (which will probably mean removing several features), and support users of the UI.