This website requires JavaScript.
Explore
Help
Sign In
status-im
/
nimbus-eth2
mirror of
https://github.com/status-im/nimbus-eth2.git
Watch
2
Star
0
Fork
You've already forked nimbus-eth2
0
Code
Issues
Projects
Releases
Wiki
Activity
38651d1bfe
nimbus-eth2
/
research
/
block_sim.nim.cfg
4 lines
89 B
INI
Raw
Normal View
History
Unescape
Escape
block pool simulator (#956) * block pool simulator like state_sim, but more
2020-05-01 15:51:24 +00:00
-d:"chronicles_sinks
=
json[file(block_sim.log)]"
use `nim-websock` instead of `news` (#4061) `news` has a few open issues that are not present in `nim-websock`: 1. There is a 1 second delay between each MB of sent data. 2. Cancelling an ongoing `send` makes the entire WebSocket unusable. 3. Control packets do not have priority over ongoing message frames. Using `news`, there are quite a few of these messages in Geth: ``` Previously seen beacon client is offline. Please ensure it is operational to follow the chain! ``` It may take quite some time to reconnect when this happens. Using `nim-websock`, this message still occurs because `eth1_monitor` reconnects the EL connection when no new blocks occurred for 5 minutes, but reconnecting is quick and the message is rarer.
2022-09-06 21:41:33 +00:00
-d:"json_rpc_websocket_package
=
websock"