Skip to content

Commit

Permalink
cargo fmt --all
Browse files Browse the repository at this point in the history
Signed-off-by: Filippo Costa <[email protected]>
  • Loading branch information
neysofu committed Jan 9, 2024
1 parent 128ad41 commit 5b000d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion full-node/sov-sequencer/src/tx_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ where

#[cfg(test)]
mod tests {
use std::{sync::Arc, time::Duration};
use std::sync::Arc;
use std::time::Duration;

use sov_mock_da::MockDaService;

Expand Down
16 changes: 10 additions & 6 deletions full-node/sov-sequencer/tests/tx_status_subscription_rpc.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
use borsh::BorshSerialize;
use demo_stf::runtime::Runtime;
use sov_data_generators::{bank_data::BankMessageGenerator, MessageGenerator};
use sov_data_generators::bank_data::BankMessageGenerator;
use sov_data_generators::MessageGenerator;
use sov_mock_da::{MockBlockHeader, MockDaService, MockDaSpec};
use sov_modules_api::{default_context::DefaultContext, digest::Digest, Spec};
use sov_modules_api::default_context::DefaultContext;
use sov_modules_api::digest::Digest;
use sov_modules_api::Spec;
use sov_prover_storage_manager::ProverStorageManager;
use sov_rollup_interface::{services::batch_builder::TxHash, storage::HierarchicalStorageManager};
use sov_sequencer::{
batch_builder::FiFoStrictBatchBuilder, utils::SimpleClient, Sequencer, TxStatus,
};
use sov_rollup_interface::services::batch_builder::TxHash;
use sov_rollup_interface::storage::HierarchicalStorageManager;
use sov_sequencer::batch_builder::FiFoStrictBatchBuilder;
use sov_sequencer::utils::SimpleClient;
use sov_sequencer::{Sequencer, TxStatus};
use sov_state::DefaultStorageSpec;
use tempfile::TempDir;

Expand Down

0 comments on commit 5b000d8

Please sign in to comment.