Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
segfault-magnet committed Sep 28, 2024
1 parent 79f8882 commit 53ff710
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions packages/eth/src/blob_encoding/encoder.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use itertools::Itertools;
use std::num::NonZeroUsize;

use alloy::{
Expand All @@ -8,7 +7,7 @@ use alloy::{
FIELD_ELEMENTS_PER_BLOB,
},
};
use itertools::izip;
use itertools::{izip, Itertools};
use ports::types::{CollectNonEmpty, Fragment, NonEmpty};

// Until the issue is fixed be careful that we use the `SidecarBuilder` and `SimpleCoder` from
Expand Down Expand Up @@ -196,9 +195,8 @@ mod tests {
use rayon::iter::{IntoParallelIterator, ParallelIterator};
use test_case::test_case;

use crate::blob_encoding::copied_from_alloy::SidecarCoder;

use super::*;
use crate::blob_encoding::copied_from_alloy::SidecarCoder;

#[test_case(100, 1; "one blob")]
#[test_case(129 * 1024, 2; "two blobs")]
Expand Down
1 change: 0 additions & 1 deletion packages/services/src/state_committer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,5 +418,4 @@ mod tests {
// Mocks validate that the fragments have been sent despite insufficient accumulation
Ok(())
}

}

0 comments on commit 53ff710

Please sign in to comment.