Skip to content

Commit

Permalink
fix subnet-evm
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Oct 31, 2024
1 parent 60d95d7 commit 19e45b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/subnet-evm
Submodule subnet-evm updated 69 files
+1 −1 .github/workflows/bench.yml
+1 −1 .github/workflows/release.yml
+1 −1 .github/workflows/tests.yml
+2 −2 Dockerfile
+5 −3 README.md
+1 −1 accounts/abi/bind/bind_test.go
+1 −1 accounts/abi/bind/precompilebind/precompile_bind_test.go
+8 −4 accounts/abi/bind/util_test.go
+2 −2 cmd/evm/internal/t8ntool/execution.go
+1 −1 cmd/evm/runner.go
+2 −0 compatibility.json
+3 −0 consensus/dummy/consensus.go
+13 −15 consensus/dummy/dynamic_fees.go
+31 −0 consensus/dummy/dynamic_fees_test.go
+9 −9 core/blockchain.go
+3 −0 core/blockchain_test.go
+1 −1 core/chain_makers.go
+2 −1 core/genesis.go
+3 −0 core/genesis_test.go
+4 −4 core/state/state_test.go
+7 −13 core/state/statedb.go
+1 −1 core/state/statedb_fuzz_test.go
+12 −12 core/state/statedb_test.go
+3 −1 core/state_processor_test.go
+6 −6 core/txpool/blobpool/blobpool_test.go
+3 −3 eth/api_debug_test.go
+1 −1 eth/ethconfig/config.go
+4 −3 eth/state_accessor.go
+4 −5 go.mod
+6 −8 go.sum
+0 −4 internal/debug/flags.go
+4 −6 internal/ethapi/api_test.go
+1 −0 miner/worker.go
+55 −30 params/config.go
+9 −0 params/config_extra.go
+3 −2 params/network_upgrades_test.go
+1 −1 peer/network.go
+1 −1 peer/stats/stats.go
+27 −0 plugin/evm/config.go
+17 −10 plugin/evm/config_test.go
+1 −3 plugin/evm/syncervm_test.go
+1 −1 plugin/evm/version.go
+185 −24 plugin/evm/vm.go
+2 −6 plugin/evm/vm_test.go
+1 −3 plugin/evm/vm_upgrade_bytes_test.go
+3 −4 plugin/evm/vm_warp_test.go
+3 −19 scripts/build_antithesis_images.sh
+2 −2 scripts/build_docker_image.sh
+1 −1 scripts/build_test.sh
+3 −0 scripts/constants.sh
+4 −3 scripts/known_flakes.txt
+38 −0 scripts/lib_avalanchego_clone.sh
+20 −1 scripts/tests.build_docker_image.sh
+1 −1 scripts/versions.sh
+3 −0 tests/init.go
+2 −2 tests/state_test_util.go
+0 −11 triedb/database.go
+16 −23 triedb/hashdb/database.go
+4 −3 utils/snow.go
+39 −6 warp/backend.go
+10 −15 warp/backend_test.go
+11 −4 warp/handlers/signature_request.go
+7 −7 warp/handlers/signature_request_p2p.go
+2 −3 warp/handlers/signature_request_p2p_test.go
+2 −2 warp/handlers/signature_request_test.go
+33 −0 warp/messages/codec.go
+45 −0 warp/messages/payload.go
+51 −0 warp/messages/validator_uptime.go
+5 −1 warp/service.go

0 comments on commit 19e45b5

Please sign in to comment.