mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 12:26:02 +00:00
93fb4c8f59
* Update experimental rpc test to do further validation on proof responses. * Enable zero value storage slots in the witness cache data so that proofs will be returned when a storage slot is updated to zero. Refactor and simplify implementation of getProofs endpoint. * Improve test validation. * Minor fixes and added test to track the changes introduced in every block using a local state. * Refactor and cleanup test. * Comments added to test and account cache fixes applied to account ledger. * Return updated storage slots even when storage is empty and add test to build. * Fix copyright and remove incorrect depth check during witness building in writeShortRlp assertion.
33 lines
1.1 KiB
Nim
33 lines
1.1 KiB
Nim
# nimbus
|
|
# Copyright (c) 2018-2024 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT
|
|
# * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
# this module helps CI save time
|
|
# when try to test buildability of these tools.
|
|
# They never run in the CI so it is ok to combine them
|
|
|
|
{. warning[UnusedImport]:off .}
|
|
|
|
import
|
|
../premix/premix,
|
|
../premix/persist,
|
|
../premix/debug,
|
|
../premix/dumper,
|
|
../premix/hunter,
|
|
../premix/regress,
|
|
./tracerTestGen,
|
|
./persistBlockTestGen,
|
|
../hive_integration/nodocker/rpc/rpc_sim,
|
|
../hive_integration/nodocker/consensus/consensus_sim,
|
|
../hive_integration/nodocker/graphql/graphql_sim,
|
|
../hive_integration/nodocker/engine/engine_sim,
|
|
../hive_integration/nodocker/pyspec/pyspec_sim,
|
|
../tools/t8n/t8n,
|
|
../tools/t8n/t8n_test,
|
|
../tools/evmstate/evmstate,
|
|
../tools/evmstate/evmstate_test,
|
|
./test_rpc_getproofs_track_state_changes
|