Skip to content
This repository has been archived by the owner on Feb 17, 2025. It is now read-only.

Commit

Permalink
correct include paths of evm-assigner
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Aug 21, 2024
1 parent c35b328 commit edbf598
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef ZKEMV_FRAMEWORK_LIBS_ASSIGNER_RUNNER_INCLUDE_ZKEVM_FRAMEWORK_ASSIGNER_RUNNER_UTILS_HPP_
#define ZKEMV_FRAMEWORK_LIBS_ASSIGNER_RUNNER_INCLUDE_ZKEVM_FRAMEWORK_ASSIGNER_RUNNER_UTILS_HPP_

#include <evmc/evmc.h>
#include <evmc.h>

#include <execution_state.hpp>
#include <instructions_opcodes.hpp>
Expand Down
2 changes: 1 addition & 1 deletion libs/assigner_runner/src/state_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <boost/endian.hpp>
#include <boost/endian/conversion.hpp>
#include <cstring>
#include <evmc/evmc.hpp>
#include <evmc.hpp>
#include <fstream>
#include <iostream>

Expand Down
2 changes: 1 addition & 1 deletion libs/assigner_runner/src/utils.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "zkevm_framework/assigner_runner/utils.hpp"

#include <evmc/evmc.h>
#include <evmc.h>

#include <cstdint>
#include <fstream>
Expand Down
3 changes: 2 additions & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ctest
ninja executables_tests
ctest

2 changes: 1 addition & 1 deletion tests/libs/assigner_runner/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_executable(assigner_runner_test runner_test.cpp)

target_link_libraries(assigner_runner_test PRIVATE zkEVMAssignerRunner zkEVMBlockGenerator GTest::gtest_main)
target_link_libraries(assigner_runner_test PRIVATE zkEVMAssignerRunner zkEVMBlockGenerator GTest::gtest_main evm-assigner)
target_compile_definitions(assigner_runner_test
PRIVATE BLOCK_CONFIG="${CMAKE_SOURCE_DIR}/bin/assigner/example_data/call_block.json"
PRIVATE STATE_CONFIG="${CMAKE_SOURCE_DIR}/bin/assigner/example_data/state.json")
Expand Down

0 comments on commit edbf598

Please sign in to comment.