tersec

Results 314 comments of tersec

Slightly less minimized version, showing the `uinttest2` aspects more explicitly: ```nim import ./asyncloop import unittest2 proc connect(): Future[int] {. async: (raw: true, raises: [ValueError]).} = var retFuture = newFuture[int]("stream.transport.connect") retFuture.fail(newException(ValueError,...

Ok, the question is whether it happens when a BN is launched but has never had a VC attached and doesn't have internal validators either, i.e. a "default" BN.

While in theory it supports an option to check for discv5: https://github.com/status-im/nimbus-eth1/blob/d2d6d865cb2c8602674a7e868c69d684d19c96c1/nimbus/config.nim#L125-L128 and https://github.com/status-im/nimbus-eth1/blob/d2d6d865cb2c8602674a7e868c69d684d19c96c1/nimbus/config.nim#L339-L347 I'm not sure if it ever checks for which type to use: https://github.com/status-im/nimbus-eth1/blob/d2d6d865cb2c8602674a7e868c69d684d19c96c1/nimbus/nimbus_execution_client.nim#L126-L130

Some general points: - at least in Nimbus, the duplicated gossip messages received lives in a separate layer, the libp2p library, which does most of this deduplication, and does not...

> > * at least in Nimbus, the duplicated gossip messages received lives in a separate layer, the libp2p library, which does most of this deduplication, and does not and...

> Agreed. This is similar to what drove my question above about "fully validated" messages. Those filtered messages, and invalid ones never make it to Lodestar. To simplify metric collection...

Well, and there's a question too of whether there should be an `admin` namespace which can be enabled/disabled in options. Right now there's not, and probably it shouldn't be part...

- `native` resolves to `znver3`. However, specifying `-march=znver3`, or `-march=znver3 -mtune=znver3`, does not result in this compiler error. In more detail, [`gcc -march=native -Q --help=target` output](https://github.com/user-attachments/files/17504366/march_native_flags.txt). To excerpt from that:...

No `-march=native`. Reproduces on another machine, with ``` gcc (Debian 14.2.0-7) 14.2.0 Copyright (C) 2024 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There...

Can you provide further details of these `genesis.ssz` and `config.yaml`?