Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
65a5eb8
Reconstruct Payloads using Payload Bodies Methods (#4028)
ethDreamer Mar 19, 2023
17d56b0
Ignore self as a bootnode (#4110)
AgeManning Mar 20, 2023
76a2007
Improve Lighthouse Connectivity Via ENR TCP Update (#4057)
AgeManning Mar 21, 2023
785a917
Customisable shuffling cache size (#4081)
AgeManning Mar 21, 2023
59e45fe
Reduce verbosity of reprocess queue logs (#4101)
paulhauner Mar 21, 2023
3ac5583
Set Capella fork epoch for Mainnet (#4111)
paulhauner Mar 21, 2023
1f8c17b
Fork choice modifications and cleanup (#3962)
paulhauner Mar 21, 2023
0616e01
Release v4.0.0 (#4112)
paulhauner Mar 22, 2023
a4d128c
move beacon block and blob to eth2/types
realbigsean Mar 22, 2023
4578f19
rename gossip blob cache to data availability checker
realbigsean Mar 22, 2023
5373879
lots of changes
realbigsean Mar 22, 2023
8cb25a5
fix some compilation issues
realbigsean Mar 22, 2023
a83d8e3
fix compilation issues
realbigsean Mar 22, 2023
ff11557
fix compilation issues
realbigsean Mar 22, 2023
4857a5f
fix compilation issues
realbigsean Mar 22, 2023
22da4c1
fix compilation issues
realbigsean Mar 22, 2023
711264d
fix compilation issues
realbigsean Mar 22, 2023
558a170
cargo fmt
realbigsean Mar 22, 2023
23ea148
Fix fork choice error message (#4122)
paulhauner Mar 23, 2023
b2525d6
Release Candidate v4.0.1-rc.0 (#4123)
paulhauner Mar 23, 2023
2fe4208
use a common data structure for block import types
realbigsean Mar 23, 2023
ea4b325
fix availability check on proposal import
realbigsean Mar 23, 2023
7fad926
Merge commit '65a5eb829264cb279ed66814c961991ae3a0a04b' into eip4844
divagant-martian Mar 24, 2023
1b9cfcc
Merge branch 'unstable' into eip4844
divagant-martian Mar 24, 2023
dd928d0
refactor the blob cache and split the block wrapper into two types
realbigsean Mar 24, 2023
c385e55
add type conversion for signed block and block wrapper
realbigsean Mar 24, 2023
1093ba1
revert change to ef_tests
divagant-martian Mar 24, 2023
25a2d8f
Merge branch 'eip4844' into deneb-free-blobs
divagant-martian Mar 24, 2023
2eae5a0
fix beacon chain tests and do some renaming, add some comments
realbigsean Mar 24, 2023
2c78f5d
merge
realbigsean Mar 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 32 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion beacon_node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beacon_node"
version = "3.5.1"
version = "4.0.1-rc.0"
authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]"]
edition = "2021"

Expand Down
1 change: 1 addition & 0 deletions beacon_node/beacon_chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ state_processing = { path = "../../consensus/state_processing" }
tree_hash = "0.4.1"
types = { path = "../../consensus/types" }
tokio = "1.14.0"
tokio-stream = "0.1.3"
eth1 = { path = "../eth1" }
futures = "0.3.7"
genesis = { path = "../genesis" }
Expand Down
Loading