Skip to content

Commit

Permalink
Update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
timemarkovqtum committed Sep 23, 2024
1 parent e72afad commit 96fbc79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evmone
Submodule evmone updated 76 files
+1 −1 .bumpversion.cfg
+79 −2 CHANGELOG.md
+1 −1 CMakeLists.txt
+30 −52 circle.yml
+3 −3 cmake/Hunter/config.cmake
+50 −0 cmake/blst.cmake
+6 −7 lib/evmone/advanced_analysis.hpp
+1 −2 lib/evmone/advanced_execution.cpp
+0 −1 lib/evmone/advanced_instructions.cpp
+43 −13 lib/evmone/baseline.hpp
+5 −5 lib/evmone/baseline_analysis.cpp
+14 −11 lib/evmone/baseline_execution.cpp
+10 −89 lib/evmone/baseline_instruction_table.cpp
+6 −5 lib/evmone/eof.cpp
+1 −1 lib/evmone/eof.hpp
+20 −48 lib/evmone/execution_state.hpp
+23 −28 lib/evmone/instructions.hpp
+7 −45 lib/evmone/instructions_calls.cpp
+0 −1 lib/evmone/instructions_opcodes.hpp
+169 −164 lib/evmone/instructions_traits.hpp
+1 −1 lib/evmone/instructions_xmacro.hpp
+15 −2 lib/evmone/vm.cpp
+6 −1 lib/evmone/vm.hpp
+7 −1 lib/evmone_precompiles/CMakeLists.txt
+418 −0 lib/evmone_precompiles/bls.cpp
+79 −0 lib/evmone_precompiles/bls.hpp
+1 −5 lib/evmone_precompiles/ecc.hpp
+168 −0 lib/evmone_precompiles/kzg.cpp
+32 −0 lib/evmone_precompiles/kzg.hpp
+8 −8 test/bench/helpers.hpp
+1 −0 test/blockchaintest/blockchaintest_runner.cpp
+24 −0 test/precompiles_bench/precompiles_bench.cpp
+2 −0 test/state/CMakeLists.txt
+0 −9 test/state/errors.hpp
+33 −23 test/state/host.cpp
+1 −11 test/state/host.hpp
+253 −1 test/state/precompiles.cpp
+11 −1 test/state/precompiles.hpp
+29 −0 test/state/precompiles_internal.hpp
+0 −54 test/state/precompiles_stubs.cpp
+0 −2 test/state/precompiles_stubs.hpp
+4 −67 test/state/state.cpp
+0 −10 test/state/state.hpp
+78 −0 test/state/system_contracts.cpp
+29 −0 test/state/system_contracts.hpp
+1 −1 test/statetest/statetest_export.cpp
+6 −8 test/statetest/statetest_loader.cpp
+6 −0 test/t8n/t8n.cpp
+3 −0 test/unittests/CMakeLists.txt
+34 −0 test/unittests/baseline_analysis_test.cpp
+6 −1 test/unittests/eof_validation_test.cpp
+1 −1 test/unittests/evm_eip7516_blobbasefee_test.cpp
+14 −4 test/unittests/evm_eof_rjump_test.cpp
+0 −5 test/unittests/evmmax_bn254_add_test.cpp
+0 −5 test/unittests/evmmax_bn254_mul_test.cpp
+0 −4 test/unittests/evmmax_secp256k1_test.cpp
+0 −6 test/unittests/evmmax_test.cpp
+6 −6 test/unittests/execution_state_test.cpp
+5 −2 test/unittests/instructions_test.cpp
+310 −0 test/unittests/precompiles_bls_test.cpp
+69 −0 test/unittests/precompiles_kzg_test.cpp
+1 −1 test/unittests/state_block_test.cpp
+1 −1 test/unittests/state_mpt_hash_test.cpp
+1 −1 test/unittests/state_mpt_test.cpp
+15 −5 test/unittests/state_precompiles_test.cpp
+41 −16 test/unittests/state_system_call_test.cpp
+5 −7 test/unittests/state_transition.cpp
+23 −0 test/unittests/state_transition_create_test.cpp
+0 −1,160 test/unittests/state_transition_eof_create_test.cpp
+37 −0 test/unittests/state_transition_selfdestruct_test.cpp
+0 −3 test/unittests/state_tx_test.cpp
+1 −1 test/unittests/statetest_loader_test.cpp
+2 −2 test/unittests/statetest_loader_tx_test.cpp
+4 −5 test/unittests/tracing_test.cpp
+2 −18 test/utils/bytecode.hpp
+2 −0 test/utils/utils.cpp

0 comments on commit 96fbc79

Please sign in to comment.