prysm
prysm copied to clipboard
Go implementation of Ethereum proof of stake
**What type of PR is this?** - Other **What does this PR do? Why is it needed?** - In `findMinTargetEth1Block`, handle an additional case when the header with the current...
### Describe the bug I run prysm node with next arguments: ``` ethereum-prysm-node-arbitrum: container_name: ethereum-prysm-node-arbitrum restart: always image: gcr.io/prysmaticlabs/prysm/beacon-chain:v5.0.0 command: > --rpc-host=0.0.0.0 --rpc-port=4000 --grpc-gateway-host=0.0.0.0 --grpc-gateway-port=7500 --datadir=/root/prysm --p2p-host-ip=65.108.201.189 --p2p-tcp-port=13010 --p2p-udp-port=12010 --accept-terms-of-use...
**What type of PR is this?** Enhancement Bug fix **What does this PR do? Why is it needed?** - This PR does several things: - Update the hashicorp LRU cache...
**What type of PR is this?** - Enhancement **What does this PR do? Why is it needed?** - This PR reworks the beacon-chain caches implementation by leveraging the latest lru/v2...
# 🦄 Feature Tracking **Current status** (opt-in or opt-out): opt-in **Opt-in feature flag name**: TBD ### Feature Description to align with other clients and be more secure we should have...
**What type of PR is this?** Cleanup **What does this PR do? Why is it needed?** The EIP4881 deposit tree is the default and we have deprecated the `EnableEIP4881` flag....
In the event block has been seen, we should gossip blobs regardless
Opening this PR to track the cleanup of the attestation pre-state retrieval function, which currently has overlapping responsibilities with getting recent state.
### Describe the bug ``` version: "3.9" services: # Creates a genesis state for the beacon chain using a YAML configuration file and # a deterministic set of 64 validators....
To check if an attestation is aggregated we loop and count all set bits. We should simply stop if there's more than 1 bit set. ``` func IsAggregated(attestation *ethpb.Attestation) bool...