Skip to content

Commit

Permalink
fix: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jul 16, 2024
1 parent c0139ce commit a5971d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trace_decoder/tests/trace_decoder_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! 2. Download the header file for the block or range of blocks:
//!```
//! file_name = b<number>_<network>_header.json
//! echo "[" > $file_name && cast rpc eth_getBlockByNumber "0x<block_number>" 'true' --rpc-url <node_rpc_endpoint> >> $file_name && echo "]" >> $file_name
//! echo "[" > $file_name && cast rpc eth_getBlockByNumber "0x<block_number>" 'false' --rpc-url <node_rpc_endpoint> >> $file_name && echo "]" >> $file_name
//! ```
use std::time::Duration;
Expand Down Expand Up @@ -166,8 +166,8 @@ fn test_parsing_decoding_proving(#[case] test_witness_directory: &str) {
init_logger();

let results = find_json_data_files(test_witness_directory, JsonFileType::Witness)
.expect("valid json data files found")
.into_iter()
.flatten()
.map(|file_path| {
{
// Read one json witness file for this block and get list of BlockProverInputs
Expand Down

0 comments on commit a5971d0

Please sign in to comment.