-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule silkworm
updated
17 files
+6 −1 | eosevm/block_extra_data.cpp | |
+1 −0 | eosevm/block_extra_data.hpp | |
+38 −0 | eosevm/gas_prices.cpp | |
+30 −0 | eosevm/gas_prices.hpp | |
+2 −1 | eosevm/version.hpp | |
+80 −27 | silkworm/core/execution/evm.cpp | |
+3 −0 | silkworm/core/execution/evm.hpp | |
+151 −1 | silkworm/core/execution/evm_test.cpp | |
+40 −8 | silkworm/core/execution/processor.cpp | |
+169 −78 | silkworm/core/execution/processor_test.cpp | |
+14 −0 | silkworm/core/types/block.hpp | |
+27 −2 | silkworm/node/db/access_layer.cpp | |
+6 −0 | silkworm/node/db/access_layer.hpp | |
+43 −0 | silkworm/node/db/access_layer_test.cpp | |
+5 −1 | silkworm/node/db/tables.hpp | |
+6 −4 | silkworm/node/stagedsync/stages/stage_senders.cpp | |
+1 −1 | third_party/evmone |