Skip to content

Commit 871d922

Browse files
Merge branch 'unstable' into attestation-batch-new
2 parents cd0bfa0 + afa6457 commit 871d922

File tree

20 files changed

+218
-82
lines changed

20 files changed

+218
-82
lines changed

Cargo.lock

Lines changed: 19 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,10 @@ snap = "1"
235235
ssz_types = { version = "0.14.0", features = ["context_deserialize", "runtime_types"] }
236236
state_processing = { path = "consensus/state_processing" }
237237
store = { path = "beacon_node/store" }
238-
strum = { version = "0.24", features = ["derive"] }
238+
strum = { version = "0.27", features = ["derive"] }
239239
superstruct = "0.10"
240240
swap_or_not_shuffle = { path = "consensus/swap_or_not_shuffle" }
241-
syn = "1"
241+
syn = "2"
242242
sysinfo = "0.26"
243243
system_health = { path = "common/system_health" }
244244
task_executor = { path = "common/task_executor" }

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
EF_TESTS = "testing/ef_tests"
44
STATE_TRANSITION_VECTORS = "testing/state_transition_vectors"
55
EXECUTION_ENGINE_INTEGRATION = "testing/execution_engine_integration"
6-
GIT_TAG := $(shell git describe --tags --candidates 1)
6+
GIT_TAG = $(shell git describe --tags --candidates 1)
77
BIN_DIR = "bin"
88

99
X86_64_TAG = "x86_64-unknown-linux-gnu"

beacon_node/beacon_chain/src/test_utils.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2923,7 +2923,6 @@ where
29232923
let chain_dump = self.chain.chain_dump().unwrap();
29242924
chain_dump
29252925
.iter()
2926-
.cloned()
29272926
.map(|checkpoint| checkpoint.beacon_state.finalized_checkpoint().root)
29282927
.filter(|block_hash| *block_hash != Hash256::zero())
29292928
.map(|hash| hash.into())

0 commit comments

Comments
 (0)