mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 15:08:00 +00:00
74fdeb4a2e
* Implement a solution for the pre-fund account limit * Update the account pre-funding handling * Fix the lighthouse node tracing issue * refactor existing dt infra * Implement the platform driver * Wire up the cleaned up driver implementation * Implement the core benchmarking components * Remove some debug logging * Fix issues in the benchmarks driver * Implement a global concurrency limit on provider requests * Update the concurrency limit * Update the concurrency limit * Cleanups * Update the lighthouse ports * Ignore certain tests * Update the new geth test
12 lines
334 B
Rust
12 lines
334 B
Rust
//! This module contains all of the code responsible for performing differential tests including the
|
|
//! driver implementation, state implementation, and the core logic that allows for tests to be
|
|
//! executed.
|
|
|
|
mod driver;
|
|
mod entry_point;
|
|
mod execution_state;
|
|
|
|
pub use driver::*;
|
|
pub use entry_point::*;
|
|
pub use execution_state::*;
|