Lukáš Lukáč
Lukáš Lukáč
I run into the same problem when downloading the debug info from a remote server: `go tool pprof -noinlines http://$IP/debug/pprof/allocs`. As a short term workaround that seems to have move...
What particular Tendermint task is fixing this issue @ggarri? It's still happening: ``` INFO [05-30|10:58:02.872] Starting consensus engine... engine=node Node resulted in panic: Error initializing DB: resource temporarily unavailable. ```
Blocked meanwhile Tendermint fixes it.
Seems like the 1s timeout should be enough for persisting the changes to disk. If it fails we increase it or implement a proper solution. I am bumping the version...
> IMO the auto-generation of the CHANGELOG seems a great idea but I would rather remove the sections of `Close Issues` and `Pull Requests` as it is quite redundant, `Bug`...
Not as part of OS milestone but as our February testing milestone
UPDATE: Seems like we have the filtering API in place without me writing any extra Lightchain code. I also wrote the tests for the `Ethers.js` library as we may use...
Hanging call: ``` curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x7A120", "address": "0xb4aB862fE086f5Baf4f81d8F1564E168d0731630", "topics":["0xb84f62b93fd66a0d09e52bd30961fc71e750f3f1a9c1584fda93aa5e056e7f34"]}],"id":74}' https://node.sirius.lightstreams.io ```
HA. A working call: ``` ~ $curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"fromBlock": "0x8618C", "address": "0xDa8B4c62b70e4441a52c4a45829c64B97124DC7b"}],"id":161}' https://node.sirius.lightstreams.io {"jsonrpc":"2.0","id":161,"result":[{"address":"0xda8b4c62b70e4441a52c4a45829c64b97124dc7b","topics":["0xb84f62b93fd66a0d09e52bd30961fc71e750f3f1a9c1584fda93aa5e056e7f34"],"data":"0x0000000000000000000000000000000000000000000000000000000000000001","blockNumber":"0x8619e","transactionHash":"0xe74b0c6f2c7db0690ba3c44f93486f00f3d35cadf42ad8d7bc53d0fc8c01f0b4","transactionIndex":"0x0","blockHash":"0xd1a855008bfd74f460e4efe85c315376088cd96e62d015739a770f3d7a21b697","logIndex":"0x0","removed":false}]} ``` The question is... what's the difference. ID seems to be...