paradigmxyz / reth

Modular, contributor-friendly and blazing-fast implementation of the Ethereum protocol, in Rust
https://reth.rs/
Apache License 2.0
3.82k stars 1.07k forks source link

OOMKilled with sudden memory spike #9605

Closed erwin-wee closed 1 month ago

erwin-wee commented 2 months ago

Describe the bug

While running a 15 minute load test on reth with a load profile consisting of rpc calls from debug and trace namespaces, there is a sudden memory spike and the client gets OOMKilled.

Load Profile Percentage Method
61.42% debug_traceTransaction
24.14% trace_transaction
7.11% trace_block
3.00% debug_traceCall
1.58% trace_replayTransaction
1.25% trace_callMany
0.86% trace_filter
0.30% debug_traceBlockByHash
0.29% debug_traceBlockByNumber
0.05% debug_getRawReceipts

Cli flags:

exec /usr/local/bin/reth node --datadir=/data --config=/data/config.toml --nat=extip:$(POD_IP) --port=30303 --http --http.api all --http.addr=0.0.0.0 --http.port=8545 --http.corsdomain=* --ws --ws.api all --ws.addr=0.0.0.0 --ws.port=8546 --ws.origins=* --authrpc.jwtsecret=/data/jwt.hex --authrpc.addr=0.0.0.0 --authrpc.port=8551 --log.file.directory=/data/logs --metrics=0.0.0.0:9000

Docker resources:

        resources:
          limits:
            cpu: 7500m
            memory: 28Gi
          requests:
            cpu: 7500m
            memory: 28Gi

Memory Metrics: image

RPC Server Metrics: image

Full Grafana Screen: screencapture-grafana-console-chainstack-d-2k8BXz24x-reth-2024-07-18-19_23_55

Steps to reproduce

  1. Run Load Test
  2. Observe and monitor

Node logs

No response

Platform(s)

Linux (x86)

What version/commit are you on?

reth Version: 1.0.0 Commit SHA: 83d412d Build Timestamp: 2024-06-24T16:45:09.014806662Z Build Features: jemalloc Build Profile: maxperf

What database version are you on?

Getting an error message when trying to get db version

thread 'main' panicked at crates/tracing/src/layers.rs:136:46:
Could not create log directory: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }

Which chain / network are you on?

Ethereum Mainnet

What type of node are you running?

Archive (default)

What prune config do you use, if any?

No response

If you've built Reth from source, provide the full command you used

No response

Code of Conduct

mattsse commented 2 months ago

thanks for reporting this.

while we have additional ratelimits in place for tracing endpoints, they don't operate on the rpc request level (yet) but only guard how many concurrent tracing jobs we execute, so they don't ratelimit response flushing.

so I believe what you're observing here is that the the node can't keep up with actually sending the response objects so there's a build-up of finished trace responses that are waiting to be written over the HTTP connection, and tracing responses can be ~100MB each.

we're working on tracing endpoint specific rpc ratelimits FYI @smatthewenglish but you can also further restrict the max allowed via --rpc.max-tracing-requests or the total rpc connections in general --rpc-max-connections

Nojoix commented 2 months ago

Hi,

I have a lot of troubles when it comes to RPC calls also (i just figured out earlier today it cames from those types of calls)

I tested to stress my rpc routines, sending them repeatedly in a loop, i works fine till i kill the process. Killing the loop made
bytes remaining on stream warning appear on the reth console.

I tested a few times and it was always when i killed the routine the warning showed.

So i did the following test :

1) connect to rpc 2) do some random rpc call (here it's eth_subscribe) 3) close

Then i saw the warning bytes remaining on stream coming on each iteration.

2024-07-18T20:59:03.833850Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.833924Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.833967Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834029Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834079Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834152Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834208Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834304Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834373Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834464Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834532Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834621Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834670Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834725Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834770Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834855Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834889Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.834953Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.834995Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835071Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835135Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835225Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835306Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835364Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835413Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835512Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835552Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835611Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835663Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835747Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835801Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.835881Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.835937Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.836004Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.836054Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.836114Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.836176Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.924863Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.925007Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.925190Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.925316Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.925513Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.925537Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.925814Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.925817Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.925921Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.926027Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.926336Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.926372Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.926667Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.926713Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.926822Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.926918Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.927144Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.927215Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.927444Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.927481Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.928009Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.928349Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.929670Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.930116Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.930778Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.930853Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.930980Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.931048Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.931152Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.931220Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.931322Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.931415Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.931501Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.931558Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.931660Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.931738Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.931853Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.931938Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932026Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.932078Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932181Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.932213Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932328Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.932382Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932473Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.932520Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932610Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.932669Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932762Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.932848Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.932955Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933023Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.933101Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933159Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.933238Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933303Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.933408Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933490Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.933586Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933663Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.933757Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933840Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.933923Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.933991Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934069Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934125Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934207Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934283Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934378Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934449Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934541Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934603Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934678Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934721Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934804Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934854Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.934932Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.934994Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935062Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935113Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935213Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935280Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935355Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935412Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935506Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935544Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935623Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935691Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935773Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935820Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.935884Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.935939Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936026Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936102Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936225Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936310Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936405Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936434Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936511Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936552Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936655Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936695Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936779Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936848Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.936917Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.936966Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.937072Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.937142Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.937220Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.937288Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.937362Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.937428Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.937524Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.937597Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.937692Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.937785Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.937869Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.937932Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938007Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938065Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938133Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938178Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938270Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938326Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938422Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938490Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938572Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938642Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938714Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938794Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.938880Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.938956Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939045Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939132Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939217Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939295Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939397Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939463Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939534Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939586Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939664Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939730Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939806Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939865Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.939946Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.939999Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940090Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940157Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940233Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940282Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940370Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940402Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940466Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940518Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940598Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940655Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940740Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940787Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940870Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.940924Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.940998Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941050Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941119Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941184Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941257Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941311Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941379Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941426Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941503Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941563Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941651Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941719Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941798Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941845Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.941925Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.941994Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942069Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942118Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942178Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942229Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942284Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942337Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942404Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942452Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942514Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942567Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942652Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942745Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942838Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.942913Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.942981Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.943034Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.943131Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.943248Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.943369Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.943431Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.943511Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.943584Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.943661Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.943903Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.944179Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.944282Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.944371Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.944429Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.944582Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.944684Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.944797Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.944864Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.944949Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945005Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.945081Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945144Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.945224Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945298Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.945385Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945452Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.945533Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945605Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.945708Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945812Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.945918Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.945950Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946048Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.946121Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946207Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.946272Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946354Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.946417Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946493Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.946550Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946636Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.946708Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946790Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.946885Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.946976Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:03.947050Z DEBUG reth_rpc_eth_api::pubsub: Error parsing optional "kind" as "SubscriptionKind": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("No more params")) } 2024-07-18T20:59:03.947154Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:12.560256Z DEBUG blockchain_tree: Appending block to canonical chain head=0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff parent=BlockNumHash { number: 20335947, hash: 0x142c149ab8ef67e4296e132297515a4831d03168583eb0b73e36faf5214f5f5a } 2024-07-18T20:59:12.585264Z DEBUG trie::parallel_state_root: pre-calculating storage roots len=224 2024-07-18T20:59:12.627166Z DEBUG blockchain_tree::chain: Validated state root number=20335948 hash=0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff elapsed=42.814893ms 2024-07-18T20:59:12.627224Z DEBUG consensus::engine::hooks: Next hook is not ready hook="Prune" 2024-07-18T20:59:12.627266Z INFO reth_node_events::node: Block added to canonical chain number=20335948 hash=0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff peers=130 txs=111 gas=9.12 Mgas gas_throughput=133.89 Mgas/second full=30.4% base_fee=7.56gwei blobs=0 excess_blobs=11 elapsed=68.101539ms 2024-07-18T20:59:12.742764Z DEBUG blockchain_tree: Committing new canonical chain: [BlockNumHash { number: 20335948, hash: 0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff }] 2024-07-18T20:59:12.744148Z DEBUG blockchain_tree: Using cached trie updates blocks=[(20335948, 0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff)] 2024-07-18T20:59:12.760659Z DEBUG providers::db: Inserted block block_number=20335948 actions=[(InsertCanonicalHeaders, 46.712µs), (InsertHeaders, 16.251µs), (InsertHeaderNumbers, 29.911µs), (GetParentTD, 360ns), (InsertHeaderTerminalDifficulties, 4.34µs), (GetNextTxNum, 4.44µs), (InsertTransactionSenders, 178.018µs), (InsertTransactions, 916.881µs), (InsertTransactionHashNumbers, 15.166009ms), (InsertBlockWithdrawals, 23.791µs), (InsertBlockBodyIndices, 23.211µs), (InsertTransactionBlocks, 20.751µs)] 2024-07-18T20:59:12.821617Z DEBUG providers::db: Appended blocks range=20335948..=20335948 actions=[(InsertBlock, 16.492522ms), (InsertState, 8.072794ms), (InsertHashes, 31.771793ms), (InsertHistoryIndices, 21.082207ms), (UpdatePipelineStages, 17.081µs)] 2024-07-18T20:59:12.884552Z DEBUG storage::db::mdbx: Commit total_duration=62.917468ms commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 13, audit: 0, write: 0, sync: 4108, ending: 0, whole: 4122, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=false 2024-07-18T20:59:12.884573Z DEBUG blockchain_tree: Canonicalization finished actions=[(CloneOldBlocks, 35.961µs), (FindCanonicalHeader, 10.011µs), (SplitChain, 1.73µs), (SplitChainForks, 610ns), (MergeAllChains, 500ns), (UpdateCanonicalIndex, 3.52µs), (RetrieveStateTrieUpdates, 1.397919ms), (CommitCanonicalChainToDatabase, 140.413038ms)] 2024-07-18T20:59:12.884834Z DEBUG consensus::engine: Canonicalized new head hash=0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff number=20335948 2024-07-18T20:59:12.884885Z DEBUG consensus::engine::hooks: Next hook is not ready hook="StaticFile" 2024-07-18T20:59:12.884886Z INFO reth_node_events::node: Canonical chain committed number=20335948 hash=0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff elapsed=142.12438ms 2024-07-18T20:59:13.564348Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:23.340850Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T20:59:23.340986Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T20:59:24.698489Z DEBUG blockchain_tree: Appending block to canonical chain head=0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 parent=BlockNumHash { number: 20335948, hash: 0xc54a7795c801b287b6b3537df746c71b6c9a8bd797058e66a6dba5f9cd1d37ff } 2024-07-18T20:59:24.731937Z DEBUG trie::parallel_state_root: pre-calculating storage roots len=322 2024-07-18T20:59:24.778972Z DEBUG blockchain_tree::chain: Validated state root number=20335949 hash=0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 elapsed=48.507015ms 2024-07-18T20:59:24.779026Z DEBUG consensus::engine::hooks: Next hook is not ready hook="Prune" 2024-07-18T20:59:24.779056Z INFO reth_node_events::node: Block added to canonical chain number=20335949 hash=0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 peers=130 txs=147 gas=16.34 Mgas gas_throughput=200.03 Mgas/second full=54.5% base_fee=7.19gwei blobs=0 excess_blobs=8 elapsed=81.663726ms 2024-07-18T20:59:24.881859Z DEBUG blockchain_tree: Committing new canonical chain: [BlockNumHash { number: 20335949, hash: 0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 }] 2024-07-18T20:59:24.884019Z DEBUG blockchain_tree: Using cached trie updates blocks=[(20335949, 0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09)] 2024-07-18T20:59:24.903931Z DEBUG providers::db: Inserted block block_number=20335949 actions=[(InsertCanonicalHeaders, 42.731µs), (InsertHeaders, 21.321µs), (InsertHeaderNumbers, 27.441µs), (GetParentTD, 411ns), (InsertHeaderTerminalDifficulties, 6.79µs), (GetNextTxNum, 4.43µs), (InsertTransactionSenders, 157.955µs), (InsertTransactions, 990.985µs), (InsertTransactionHashNumbers, 18.506858ms), (InsertBlockWithdrawals, 25.581µs), (InsertBlockBodyIndices, 23.511µs), (InsertTransactionBlocks, 22.401µs)] 2024-07-18T20:59:25.003022Z DEBUG providers::db: Appended blocks range=20335949..=20335949 actions=[(InsertBlock, 19.893736ms), (InsertState, 12.073434ms), (InsertHashes, 53.557161ms), (InsertHistoryIndices, 33.428103ms), (UpdatePipelineStages, 15.86µs)] 2024-07-18T20:59:25.091365Z DEBUG storage::db::mdbx: Commit total_duration=88.32203ms commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 27, audit: 0, write: 0, sync: 5758, ending: 0, whole: 5786, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=false 2024-07-18T20:59:25.091386Z DEBUG blockchain_tree: Canonicalization finished actions=[(CloneOldBlocks, 70.723µs), (FindCanonicalHeader, 18.231µs), (SplitChain, 3.09µs), (SplitChainForks, 1.21µs), (MergeAllChains, 1.08µs), (UpdateCanonicalIndex, 7.3µs), (RetrieveStateTrieUpdates, 2.169683ms), (CommitCanonicalChainToDatabase, 207.357848ms)] 2024-07-18T20:59:25.091419Z DEBUG consensus::engine: Canonicalized new head hash=0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 number=20335949 2024-07-18T20:59:25.091465Z INFO reth_node_events::node: Canonical chain committed number=20335949 hash=0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 elapsed=209.664306ms 2024-07-18T20:59:25.091475Z DEBUG consensus::engine::hooks: Next hook is not ready hook="StaticFile" 2024-07-18T20:59:25.636096Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:36.022640Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T20:59:36.022785Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T20:59:36.789490Z DEBUG blockchain_tree: Appending block to canonical chain head=0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df parent=BlockNumHash { number: 20335949, hash: 0x8eb957835ca6da0838be75dea1fdb5cfbd521ab6ef24a72132df09457c2fdc09 } 2024-07-18T20:59:36.817988Z DEBUG trie::parallel_state_root: pre-calculating storage roots len=410 2024-07-18T20:59:36.887631Z DEBUG blockchain_tree::chain: Validated state root number=20335950 hash=0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df elapsed=70.575994ms 2024-07-18T20:59:36.888226Z DEBUG consensus::engine::hooks: Next hook is not ready hook="Prune" 2024-07-18T20:59:36.888266Z INFO reth_node_events::node: Block added to canonical chain number=20335950 hash=0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df peers=130 txs=201 gas=17.99 Mgas gas_throughput=179.65 Mgas/second full=60.0% base_fee=7.27gwei blobs=4 excess_blobs=5 elapsed=100.155524ms 2024-07-18T20:59:37.014631Z DEBUG blockchain_tree: Committing new canonical chain: [BlockNumHash { number: 20335950, hash: 0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df }] 2024-07-18T20:59:37.017712Z DEBUG blockchain_tree: Using cached trie updates blocks=[(20335950, 0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df)] 2024-07-18T20:59:37.048982Z DEBUG providers::db: Inserted block block_number=20335950 actions=[(InsertCanonicalHeaders, 63.913µs), (InsertHeaders, 21.641µs), (InsertHeaderNumbers, 35.242µs), (GetParentTD, 749ns), (InsertHeaderTerminalDifficulties, 11.031µs), (GetNextTxNum, 6.46µs), (InsertTransactionSenders, 477.307µs), (InsertTransactions, 1.831896ms), (InsertTransactionHashNumbers, 28.606335ms), (InsertBlockWithdrawals, 40.191µs), (InsertBlockBodyIndices, 31.162µs), (InsertTransactionBlocks, 34.461µs)] 2024-07-18T20:59:37.181349Z DEBUG providers::db: Appended blocks range=20335950..=20335950 actions=[(InsertBlock, 31.255841ms), (InsertState, 20.004731ms), (InsertHashes, 62.969561ms), (InsertHistoryIndices, 49.350301ms), (UpdatePipelineStages, 22.581µs)] 2024-07-18T20:59:37.318097Z DEBUG storage::db::mdbx: Commit total_duration=136.72171ms commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 21, audit: 0, write: 0, sync: 8935, ending: 0, whole: 8958, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=false 2024-07-18T20:59:37.318130Z DEBUG blockchain_tree: Canonicalization finished actions=[(CloneOldBlocks, 34.172µs), (FindCanonicalHeader, 16.33µs), (SplitChain, 2.29µs), (SplitChainForks, 880ns), (MergeAllChains, 1µs), (UpdateCanonicalIndex, 4.561µs), (RetrieveStateTrieUpdates, 3.093041ms), (CommitCanonicalChainToDatabase, 300.407999ms)] 2024-07-18T20:59:37.318177Z DEBUG consensus::engine: Canonicalized new head hash=0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df number=20335950 2024-07-18T20:59:37.318232Z INFO reth_node_events::node: Canonical chain committed number=20335950 hash=0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df elapsed=303.608535ms 2024-07-18T20:59:37.318251Z DEBUG consensus::engine::hooks: Next hook is not ready hook="StaticFile" 2024-07-18T20:59:37.815330Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:48.834762Z DEBUG blockchain_tree: Appending block to canonical chain head=0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b parent=BlockNumHash { number: 20335950, hash: 0x9657df6eff8eb923bde81a38f7a8adcea3f25e8dede4c8877dc73bd7c91c45df } 2024-07-18T20:59:48.852833Z DEBUG trie::parallel_state_root: pre-calculating storage roots len=280 2024-07-18T20:59:48.903785Z DEBUG blockchain_tree::chain: Validated state root number=20335951 hash=0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b elapsed=51.684871ms 2024-07-18T20:59:48.903846Z DEBUG consensus::engine::hooks: Next hook is not ready hook="Prune" 2024-07-18T20:59:48.903885Z INFO reth_node_events::node: Block added to canonical chain number=20335951 hash=0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b peers=130 txs=128 gas=10.56 Mgas gas_throughput=150.99 Mgas/second full=35.2% base_fee=7.45gwei blobs=0 excess_blobs=6 elapsed=69.957348ms 2024-07-18T20:59:49.006079Z DEBUG blockchain_tree: Committing new canonical chain: [BlockNumHash { number: 20335951, hash: 0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b }] 2024-07-18T20:59:49.008634Z DEBUG blockchain_tree: Using cached trie updates blocks=[(20335951, 0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b)] 2024-07-18T20:59:49.026867Z DEBUG providers::db: Inserted block block_number=20335951 actions=[(InsertCanonicalHeaders, 120.335µs), (InsertHeaders, 48.522µs), (InsertHeaderNumbers, 58.493µs), (GetParentTD, 550ns), (InsertHeaderTerminalDifficulties, 14.851µs), (GetNextTxNum, 7.92µs), (InsertTransactionSenders, 168.504µs), (InsertTransactions, 810.359µs), (InsertTransactionHashNumbers, 16.802637ms), (InsertBlockWithdrawals, 29.511µs), (InsertBlockBodyIndices, 25.421µs), (InsertTransactionBlocks, 25.491µs)] 2024-07-18T20:59:49.103507Z DEBUG providers::db: Appended blocks range=20335951..=20335951 actions=[(InsertBlock, 18.186935ms), (InsertState, 10.659733ms), (InsertHashes, 40.554406ms), (InsertHistoryIndices, 25.393732ms), (UpdatePipelineStages, 16.28µs)] 2024-07-18T20:59:49.162968Z DEBUG storage::db::mdbx: Commit total_duration=59.440091ms commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 12, audit: 0, write: 0, sync: 3880, ending: 0, whole: 3894, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=false 2024-07-18T20:59:49.162988Z DEBUG blockchain_tree: Canonicalization finished actions=[(CloneOldBlocks, 43.092µs), (FindCanonicalHeader, 14.67µs), (SplitChain, 2.35µs), (SplitChainForks, 871ns), (MergeAllChains, 1.049µs), (UpdateCanonicalIndex, 4.861µs), (RetrieveStateTrieUpdates, 2.568759ms), (CommitCanonicalChainToDatabase, 154.339811ms)] 2024-07-18T20:59:49.163028Z DEBUG consensus::engine: Canonicalized new head hash=0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b number=20335951 2024-07-18T20:59:49.163081Z DEBUG consensus::engine::hooks: Next hook is not ready hook="StaticFile" 2024-07-18T20:59:49.163097Z INFO reth_node_events::node: Canonical chain committed number=20335951 hash=0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b elapsed=157.016764ms 2024-07-18T20:59:49.699212Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" } 2024-07-18T20:59:53.624897Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T20:59:53.625024Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T21:00:00.294613Z DEBUG blockchain_tree: Appending block to canonical chain head=0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb parent=BlockNumHash { number: 20335951, hash: 0xd04bb0fd6fcc1d16afd38d4bb2b522206063a8117da4403959a564560f41c47b } 2024-07-18T21:00:00.320971Z DEBUG trie::parallel_state_root: pre-calculating storage roots len=348 2024-07-18T21:00:00.386035Z DEBUG blockchain_tree::chain: Validated state root number=20335952 hash=0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb elapsed=65.918366ms 2024-07-18T21:00:00.386086Z DEBUG pruner: Minimum pruning interval reached previous_tip_block_number=Some(20335946) tip_block_number=20335951 2024-07-18T21:00:00.386096Z DEBUG consensus::engine::hooks: Polled next hook hook="Prune" result=PolledHook { name: "Prune", event: Started, db_access_level: ReadWrite } 2024-07-18T21:00:00.386102Z DEBUG consensus::engine::hooks: Next hook is not ready hook="StaticFile" 2024-07-18T21:00:00.386116Z DEBUG pruner: Pruner started tip_block_number=20335951 2024-07-18T21:00:00.386135Z INFO reth_node_events::node: Block added to canonical chain number=20335952 hash=0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb peers=130 txs=168 gas=14.44 Mgas gas_throughput=156.21 Mgas/second full=48.1% base_fee=7.17gwei blobs=6 excess_blobs=3 elapsed=92.411344ms 2024-07-18T21:00:00.386157Z DEBUG pruner: Segment pruning started segment=Transactions purpose=StaticFile to_block=20335880 prune_mode=Before(20335881) 2024-07-18T21:00:00.386167Z INFO reth_node_events::node: Pruner started tip_block_number=20335951 2024-07-18T21:00:00.386179Z DEBUG pruner: Segment pruning finished segment=Transactions purpose=StaticFile to_block=20335880 prune_mode=Before(20335881) output.pruned=0 2024-07-18T21:00:00.386186Z DEBUG pruner: Segment pruning started segment=Headers purpose=StaticFile to_block=20335880 prune_mode=Before(20335881) 2024-07-18T21:00:00.386205Z DEBUG pruner: Segment pruning finished segment=Headers purpose=StaticFile to_block=20335880 prune_mode=Before(20335881) output.pruned=0 2024-07-18T21:00:00.386209Z DEBUG pruner: Segment pruning started segment=Receipts purpose=StaticFile to_block=20335880 prune_mode=Before(20335881) 2024-07-18T21:00:00.386214Z DEBUG pruner: Segment pruning finished segment=Receipts purpose=StaticFile to_block=20335880 prune_mode=Before(20335881) output.pruned=0 2024-07-18T21:00:00.386240Z DEBUG storage::db::mdbx: Commit total_duration=20.351µs commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 0, audit: 0, write: 0, sync: 0, ending: 0, whole: 1, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=false 2024-07-18T21:00:00.386257Z DEBUG pruner: Pruner finished tip_block_number=20335951 elapsed=127.766µs deleted_entries=0 limiter=PruneLimiter { deleted_entries_limit: Some(PruneDeletedEntriesLimit { limit: 17500, deleted: 0 }), time_limit: Some(PruneTimeLimit { limit: 100ms, start: Instant { tv_sec: 25941465, tv_nsec: 668366288 } }) } progress=Finished stats=[] 2024-07-18T21:00:00.386279Z DEBUG consensus::engine::hooks: Polled running hook with db write access hook="Prune" result=PolledHook { name: "Prune", event: Finished(Ok(())), db_access_level: ReadWrite } 2024-07-18T21:00:00.386313Z INFO reth_node_events::node: Pruner finished tip_block_number=20335951 elapsed=127.766µs stats=[] 2024-07-18T21:00:00.386407Z DEBUG consensus::engine::hooks: Next hook is not ready hook="StaticFile" 2024-07-18T21:00:00.615416Z DEBUG blockchain_tree: Committing new canonical chain: [BlockNumHash { number: 20335952, hash: 0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb }] 2024-07-18T21:00:00.618143Z DEBUG blockchain_tree: Using cached trie updates blocks=[(20335952, 0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb)] 2024-07-18T21:00:00.641756Z DEBUG providers::db: Inserted block block_number=20335952 actions=[(InsertCanonicalHeaders, 43.982µs), (InsertHeaders, 21.29µs), (InsertHeaderNumbers, 31.292µs), (GetParentTD, 320ns), (InsertHeaderTerminalDifficulties, 12.19µs), (GetNextTxNum, 6.751µs), (InsertTransactionSenders, 184.329µs), (InsertTransactions, 1.222402ms), (InsertTransactionHashNumbers, 21.922433ms), (InsertBlockWithdrawals, 31.752µs), (InsertBlockBodyIndices, 23.261µs), (InsertTransactionBlocks, 22.811µs)] 2024-07-18T21:00:00.746194Z DEBUG providers::db: Appended blocks range=20335952..=20335952 actions=[(InsertBlock, 23.608234ms), (InsertState, 11.929029ms), (InsertHashes, 53.856632ms), (InsertHistoryIndices, 38.609934ms), (UpdatePipelineStages, 20.271µs)] 2024-07-18T21:00:00.854154Z DEBUG storage::db::mdbx: Commit total_duration=107.940454ms commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 18, audit: 0, write: 0, sync: 7053, ending: 0, whole: 7072, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=false 2024-07-18T21:00:00.854174Z DEBUG blockchain_tree: Canonicalization finished actions=[(CloneOldBlocks, 35.331µs), (FindCanonicalHeader, 10.12µs), (SplitChain, 2.26µs), (SplitChainForks, 560ns), (MergeAllChains, 551ns), (UpdateCanonicalIndex, 3.36µs), (RetrieveStateTrieUpdates, 2.736726ms), (CommitCanonicalChainToDatabase, 236.021347ms)] 2024-07-18T21:00:00.854207Z DEBUG consensus::engine: Canonicalized new head hash=0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb number=20335952 2024-07-18T21:00:00.854257Z DEBUG consensus::engine::hooks: Next hook is not ready hook="Prune" 2024-07-18T21:00:00.854277Z INFO reth_node_events::node: Canonical chain committed number=20335952 hash=0xf1bcee7184592a966b17c0a852686d8277b8aaa3aa8029cab07bc902fe3608eb elapsed=238.844598ms 2024-07-18T21:00:01.180290Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T21:00:01.180440Z DEBUG reth_rpc_eth_api::core: Error parsing optional "block_number" as "Option < BlockId >": ErrorObject { code: InvalidParams, message: "Invalid params", data: Some(RawValue("hex string without 0x prefix at line 1 column 32")) } 2024-07-18T21:00:01.405884Z WARN reth_ipc::server::connection: IPC request failed: Custom { kind: Other, error: "bytes remaining on stream" }

hope that helps,

github-actions[bot] commented 1 month ago

This issue is stale because it has been open for 21 days with no activity.

github-actions[bot] commented 1 month ago

This issue was closed because it has been inactive for 7 days since being marked as stale.