Jacek Sieka

Results 214 issues of Jacek Sieka

https://github.com/status-im/nim-ssz-serialization/pull/35 brings in https://github.com/prysmaticlabs/hashtree as a supported backend for SHA256, giving a nice little performance boost to all `hash_tree_root` calls on supported platforms / compilers. Expected gains are on the...

https://github.com/ethereum/beacon-APIs/pull/317

Specifying 0 as port should make nimbus let the OS pick a port and subsequently use it in ENR/libp2p/etc See also https://github.com/waku-org/nwaku/pull/2125

Loading the serialized signature in attestation currently makes up around 15-20% of CPU usage on the main thread - since the taskpool has become async, we could offload the loading...

https://github.com/status-im/nimbus-eth2/blob/d1713031338f4976fdf115721136f9620598afaa/beacon_chain/fork_choice/fork_choice.nim#L232 currently enqueues attestations "from the future" with respect to the current fork choice time. However, this queue is not necessary: only attestations from the "current" slot end up on...

The `unviable` field in the quarantine is used to discover block histories that are known not to be worth pursuing - this can happen either because finalization permanently cuts off...

We know from the blocks we process what the current execution block number (or request to the execution client) is so we can use this to provide a %-done of...

Depends on https://github.com/status-im/nim-chronos/pull/297 and https://github.com/status-im/nim-stew/pull/134

``` $ build/nimbus_beacon_node --jwt-secret:/data/mainnet_0/jwtsecret web3 test http://server:8551 Establishing web3 connection: Connected Chain ID: Error(Unauthorized) Latest block: Error(Unauthorized) Sync status: Error(Unauthorized) Deposit root...Traceback (most recent call last, using override) /home/arnetheduck/status/nimbus-eth2/vendor/nim-libp2p/libp2p/stream/bufferstream.nim(502) main...

Because of network delays as async validation, attestations and other small messages may arrive earlier than what we anticipate for the block - we should buffer such attestations and validate...