Jacek Sieka
Jacek Sieka
``` /opt/nimbus-eth1/fluffy/fluffy.nim(377) fluffy /opt/nimbus-eth1/fluffy/fluffy.nim(365) run /opt/nimbus-eth1/vendor/nim-chronos/chronos/internal/asyncengine.nim(1210) runForever /opt/nimbus-eth1/vendor/nim-chronos/chronos/internal/asyncengine.nim(150) poll /opt/nimbus-eth1/vendor/nim-chronos/chronos/internal/asyncfutures.nim(371) futureContinue /opt/nimbus-eth1/vendor/nim-eth/eth/utp/utp_socket.nim(1643) eventLoop /opt/nimbus-eth1/vendor/nim-eth/eth/utp/utp_socket.nim(1283) processPacketInternal /opt/nimbus-eth1/vendor/nim-eth/eth/utp/clock_drift_calculator.nim(88) addSample /opt/nimbus-eth1/vendor/nimbus-build-system/vendor/Nim/lib/system/integerops.nim(15) raiseOverflow /opt/nimbus-eth1/vendor/nimbus-build-system/vendor/Nim/lib/system/fatal.nim(54) sysFatal [[reraised from: /opt/nimbus-eth1/fluffy/fluffy.nim(377) fluffy /opt/nimbus-eth1/fluffy/fluffy.nim(365) run /opt/nimbus-eth1/vendor/nim-chronos/chronos/internal/asyncengine.nim(1210) runForever /opt/nimbus-eth1/vendor/nim-chronos/chronos/internal/asyncengine.nim(150)...
* Linux and Windows define special `c` functions for clearing memory that the compiler is guaranteed to not remove - in addition to being safer, they are typically also faster...
…tions As part of the discussions surrounding EIP-7594 (peerdas), it was highlighted that during sampling and/or data requests, the sampler does not have timing information for when a samplee will...
Hashing of RLP is critical for execution client performance and will become even more important when we start using more efficient encodings than RLP in the client. [Currently](https://github.com/status-im/nim-eth/blob/3d66c5b8992ae4a9ae5f6271821c6b7c65079acf/eth/common/eth_types_rlp.nim#L519), to compute...
A single Nimbus beacon node can "drive" [multiple execution clients](https://nimbus.guide/eth1.html#running-multiple-execution-clients) and thus discover disagreements between them when validating blocks and/or allow them to compete on block production. It would be...
Several validator clients support connecting to multiple beacon nodes for redundancy. It would be good to have this setup supported by kurtosis since it stresses validator client implementations in a...
Similar to nimbus-eth1, the beacon node should have an `import` command that uses the `--era-dir` option and reads all files present to create a database hosting a consensus state.
### Description ``` /compiler/sem.nim(836) semStmtAndGenerateGenerics /compiler/semstmts.nim(2689) semStmt /compiler/semexprs.nim(1182) semExprNoType /compiler/semexprs.nim(3323) semExpr /compiler/semstmts.nim(2636) semStmtList /compiler/semexprs.nim(3356) semExpr /compiler/importer.nim(360) evalImport /compiler/importer.nim(328) impMod /compiler/importer.nim(293) myImportModule /compiler/passes.nim(201) importModule /compiler/passes.nim(172) compileModule /compiler/passes.nim(149) processModule /compiler/passes.nim(82) processTopLevelStmt /compiler/passes.nim(252)...
### Description ```nim type Opt[T] = object FutureBase* = ref object of RootObj Future*[T] = ref object of FutureBase ## Typed future. internalValue*: T ## Stored value template err[T](E: type...
### Description ```nim type Result[T, E] = object func value*[T, E](self: Result[T, E]): T {.inline.} = discard func value*[T: not void, E](self: var Result[T, E]): var T {.inline.} = discard...