Skip to content

Commit 08407b1

Browse files
michaelsproulrealbigsean
authored andcommitted
Fix consensus, SSZ, tree hash & run merge EF tests (sigp#2622)
* Update to v1.1.0-beta.4 (squash of sigp#2548) * SSZ, cached tree hash, EF tests
1 parent 954e012 commit 08407b1

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

consensus/state_processing/src/per_block_processing.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,17 @@ pub fn per_block_processing<T: EthSpec>(
152152
)?;
153153
}
154154

155+
<<<<<<< HEAD
156+
=======
157+
if is_execution_enabled(state, block.body()) {
158+
let payload = block
159+
.body()
160+
.execution_payload()
161+
.ok_or(BlockProcessingError::IncorrectStateType)?;
162+
process_execution_payload(state, payload, spec)?;
163+
}
164+
165+
>>>>>>> 5a35ac060 (Fix consensus, SSZ, tree hash & run merge EF tests (#2622))
155166
Ok(())
156167
}
157168

testing/ef_tests/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
<<<<<<< HEAD
12
TESTS_TAG := v1.1.0-beta.5
3+
=======
4+
TESTS_TAG := v1.1.0-beta.4
5+
>>>>>>> 5a35ac060 (Fix consensus, SSZ, tree hash & run merge EF tests (#2622))
26
TESTS = general minimal mainnet
37
TARBALLS = $(patsubst %,%-$(TESTS_TAG).tar.gz,$(TESTS))
48

0 commit comments

Comments
 (0)