Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f851e05
Move BP to NBP dir
paulhauner Jun 27, 2023
ac4eb78
Add new beacon_processor dir
paulhauner Jun 27, 2023
01f482d
Move NBP files to BP crate
paulhauner Jun 27, 2023
f484f9f
Move worker files
paulhauner Jun 27, 2023
386ecd7
Remove placeholder file
paulhauner Jun 27, 2023
45786b9
Add changes to network/sync
paulhauner Jun 27, 2023
308f62a
Add changes to beacon_node/client
paulhauner Jun 27, 2023
4f5114a
Add changes to Cargo.lock, Cargo.toml
paulhauner Jun 27, 2023
341b075
Add changes to lighthouse_network
paulhauner Jun 27, 2023
587e130
Add changes to beacon_node src.rs
paulhauner Jun 27, 2023
680033c
Add non-BP network files
paulhauner Jun 27, 2023
b05b96d
Add two Cargo.tomls
paulhauner Jun 27, 2023
f321504
Add changes to beacon_processor
paulhauner Jun 27, 2023
1109353
Add changes to network_beacon_processor
paulhauner Jun 27, 2023
2cea3e9
Fix compile errors
paulhauner Jun 27, 2023
79b6348
Remove unused functions
paulhauner Jun 27, 2023
fb42607
Simplify changes to `ClientBuilder`
paulhauner Jun 27, 2023
68fe7df
Start processing `should_process`
paulhauner Jun 29, 2023
7b6507c
Revert "Start processing `should_process`"
paulhauner Jun 30, 2023
3a5aa55
Allow for ignoring requeued RPC blocks
paulhauner Jun 30, 2023
c59ed9d
Merge branch 'unstable' into move-bp-3
paulhauner Jun 30, 2023
341e7fe
Move tests file
paulhauner Jun 30, 2023
c91e1bb
Enable tests
paulhauner Jun 30, 2023
a7b279e
Reduce queue lengths
paulhauner Jun 30, 2023
224b998
Create backfill specific events
paulhauner Jul 3, 2023
9182538
Remove `process_id` from BP
paulhauner Jul 3, 2023
26b903c
Avoid modifying `ChainSegmentProcessId`
paulhauner Jul 3, 2023
576d8a8
Ensure backfill events are correctly flagged
paulhauner Jul 3, 2023
97e512f
Fix duplicate cache test
paulhauner Jul 3, 2023
e1e3edf
Move `DuplicateCache` to reduce diff
paulhauner Jul 3, 2023
cdafec7
Start using `BeaconProcessorSend`
paulhauner Jul 3, 2023
c42bf0d
Deduplicate metrics
paulhauner Jul 5, 2023
fa4770e
Remove duplicate metric
paulhauner Jul 10, 2023
d2e5f9d
Remove duplicate `NetworkGlobals`
paulhauner Jul 10, 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
28 changes: 28 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [

"beacon_node",
"beacon_node/beacon_chain",
"beacon_node/beacon_processor",
"beacon_node/builder_client",
"beacon_node/client",
"beacon_node/eth1",
Expand Down
2 changes: 1 addition & 1 deletion beacon_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ monitoring_api = { path = "../common/monitoring_api" }
sensitive_url = { path = "../common/sensitive_url" }
http_api = { path = "http_api" }
unused_port = { path = "../common/unused_port" }
strum = "0.24.1"
strum = "0.24.1"
24 changes: 24 additions & 0 deletions beacon_node/beacon_processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "beacon_processor"
version = "0.1.0"
edition = "2021"

[dependencies]
slog = { version = "2.5.2", features = ["max_level_trace"] }
itertools = "0.10.0"
logging = { path = "../../common/logging" }
tokio = { version = "1.14.0", features = ["full"] }
tokio-util = { version = "0.6.3", features = ["time"] }
futures = "0.3.7"
fnv = "1.0.7"
strum = "0.24.0"
task_executor = { path = "../../common/task_executor" }
slot_clock = { path = "../../common/slot_clock" }
lighthouse_network = { path = "../lighthouse_network" }
hex = "0.4.2"
derivative = "2.2.0"
types = { path = "../../consensus/types" }
ethereum_ssz = "0.5.0"
lazy_static = "1.4.0"
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
parking_lot = "0.12.0"
Loading