Tomás Arjovsky
Tomás Arjovsky
Currently there's a limit of about 100 topics when calling `Kane.Topic.all` function, as the pubsub API paginates the results. There are several ways of removing this 100 topic limit, but...
As mentioned in #39 , we currently don't have a way to list all topics when there are more than 100 of them. This PR takes a simple approach to...
**Motivation** We need to track all supervisors and other processes with their init args, so that we can fix the restart strategies as per #1097
The go libp2p module gets this error and the node doesn't recover, but process still lives. ``` panic: listen udp 0.0.0.0:9000: bind: address already in use goroutine 1 [running]: libp2p_port/internal/utils.PanicIfError(...)...
Might be a configuration issue, but when first starting the node, the following error usually appears a couple of times: ``` ERROR 09:49:52.347 #PID running BeaconApi.Endpoint (connection #PID, stream id...
Found when testing the local client in kurtosis, without doing anything but bringing the network up. ```elixir GenServer LambdaEthereumConsensus.Validator_a94d36839c1557727aa55fcca24faaab0d1e5f0ecff1dd709e22f0c55408b8b74d22173bc312d27baaa8688ae1b4be2c terminating ** (stop) exited in: GenServer.call( LambdaEthereumConsensus.P2P.Gossip.Attestation, {:collect, 11, %Types.Attestation{ aggregation_bits:...
We have a file for base types. We should: 1. Rename the file from `types.ex` to `base.ex` 2. Rename the module from `Types` to `LambdaEthereumConsensus.Types.Base`. 3. Use aliases in files...
When an external validator tries to connect to our node it fails to see it as active because `node/version` is not implemented. We should do it, at least with a...
Currently we have different configuration categories: - mode: db vs full. `:db` doesn't enable the metadata genserver, the beacon api or the beacon node, which contains the fork choice genserver,...
In order to have more complete spec tests, we need to add the missing SSZ containers: - ~`Eth1Block`~ - ~`SyncAggregatorSelectionData`~ - ~`ContributionAndProof`~ - ~`SignedContributionAndProof`~ - ~`SyncCommitteeContribution`~ - ~`SyncCommitteeMessage`~ Low priority:...