Age Manning
Age Manning
## Issue Addressed We are seeing errors in gossipsub related to an inconsistent state between mesh peers and connected peers. There appears to be a few problems. This PR will...
This is a temporary PR as this flag has been deprecated in the latest libp2p release. We need to ugprade to the latest libp2p version and change this flag to...
Mplex is deprecated and is becoming a liability. We currently support two better alternatives, yamux (for TCP) and QUIC (which has its own multiplexer) over UDP. The issue is that...
## Overview This is an implementation of https://github.com/ethereum/consensus-specs/pull/3735 Essentially, rather than having Lighthouse rotate every 24 hours around long-lived subnets, it will stay fixed on subnets for the duration of...
It can be the case that peers have invalid ENRs (i.e report socket addresses that do not match the socket src of the packet). Previously discovery would drop packets from...
I was playing around and saw:  The participation rate is said to be 100%, but its more like 99.6. Seems we are losing some decimal points here. Also the...
Starting to move common crates to be more friendly to export. This PR adds a tracing feature to the task executor, which removes the slog dependencies and logging. This also...
This update brings a few changes. Specifically: - More accessibility for NAT'd peers to find and discover peers - Improved enr-auto-updates for dual-stack nodes
# Modularize the VC The VC currently is built mostly as a single module. It self-references itself making it hard to modularize its components. This PR splits the VC into...
## Description The `common/eth2` crate appears to import the whole world. Other crates that depend on eth2 are compiling and building libp2p and a whole host of other things. It...