From 33476f92a25defd735b3b8139f4c84cbfb943165 Mon Sep 17 00:00:00 2001 From: JereSalo Date: Fri, 27 Dec 2024 09:14:18 -0300 Subject: [PATCH] ditto --- .github/scripts/publish_levm_hive.sh | 22 ++++++++++++++++++++ .github/workflows/daily_reports_testing.yaml | 15 +++---------- .gitignore | 3 ++- Makefile | 7 +------ crates/blockchain/blockchain.rs | 2 -- 5 files changed, 28 insertions(+), 21 deletions(-) create mode 100644 .github/scripts/publish_levm_hive.sh diff --git a/.github/scripts/publish_levm_hive.sh b/.github/scripts/publish_levm_hive.sh new file mode 100644 index 000000000..3f5db1c6c --- /dev/null +++ b/.github/scripts/publish_levm_hive.sh @@ -0,0 +1,22 @@ +curl -X POST $url \ +-H 'Content-Type: application/json; charset=utf-8' \ +--data @- < Result<(), ChainError> { - println!("This is REVM add_block"); use ethrex_vm::get_state_transitions; let block_hash = block.header.compute_block_hash(); @@ -76,7 +75,6 @@ pub fn add_block(block: &Block, storage: &Store) -> Result<(), ChainError> { /// Performs pre and post execution validation, and updates the database with the post state. #[cfg(feature = "levm")] pub fn add_block(block: &Block, storage: &Store) -> Result<(), ChainError> { - println!("This is LEVM add_block"); let block_hash = block.header.compute_block_hash(); // Validate if it can be the new head and find the parent