Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions .github/workflows/common_hive_reports.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ jobs:
simulation: ethereum/eest/consume-rlp,
limit: ".*fork_Osaka.*",
}
- {
name: "Execute Blobs tests",
file_name: execute-blobs,
simulation: ethereum/eest/execute-blobs,
}

steps:
- name: Verify input parameters
Expand Down
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build lint test clean run-image build-image clean-vectors \
setup-hive test-pattern-default run-hive run-hive-debug clean-hive-logs \
load-test-fibonacci load-test-io
load-test-fibonacci load-test-io run-hive-eest-blobs

help: ## 📚 Show help for each of the Makefile recipes
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
Expand Down Expand Up @@ -123,9 +123,12 @@ run-hive-eest: build-image setup-hive ## 🧪 Generic command for running Hive E
run-hive-eest-engine: ## Run hive EEST Engine tests
$(MAKE) run-hive-eest EEST_SIM=ethereum/eest/consume-engine

run-hive-eest-rlp: ## Run hive EEST Engine tests
run-hive-eest-rlp: ## Run hive EEST RLP tests
$(MAKE) run-hive-eest EEST_SIM=ethereum/eest/consume-rlp

run-hive-eest-blobs: ## Run hive EEST Blobs tests
$(MAKE) run-hive-eest EEST_SIM=ethereum/eest/execute-blobs

clean-hive-logs: ## 🧹 Clean Hive logs
rm -rf ./hive/workspace/logs

Expand Down
357 changes: 0 additions & 357 deletions cmd/ethrex_replay/src/block_run_report.rs

This file was deleted.

1 change: 1 addition & 0 deletions crates/blockchain/blockchain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ impl Blockchain {

P2PTransaction::EIP4844TransactionWithBlobs(WrappedEIP4844Transaction {
tx: itx,
wrapper_version: bundle.version,
blobs_bundle: bundle,
})
}
Expand Down
Loading
Loading