Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bkolad committed Nov 14, 2023
1 parent 147c5a0 commit 418b1be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions crates/rollup/tests/bank/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::net::SocketAddr;

use super::test_helpers::start_rollup;
use borsh::BorshSerialize;
use jsonrpsee::core::client::{Subscription, SubscriptionClientT};
use jsonrpsee::rpc_params;
Expand All @@ -8,13 +9,11 @@ use sov_modules_api::default_context::DefaultContext;
use sov_modules_api::default_signature::private_key::DefaultPrivateKey;
use sov_modules_api::transaction::Transaction;
use sov_modules_api::{PrivateKey, Spec};
use sov_modules_rollup_blueprint::RollupProverConfig;
use sov_sequencer::utils::SimpleClient;
use sov_stf_runner::RollupProverConfig;
use stf_starter::genesis_config::GenesisPaths;
use stf_starter::RuntimeCall;

use super::test_helpers::start_rollup;

const TOKEN_SALT: u64 = 0;
const TOKEN_NAME: &str = "test_token";

Expand Down
3 changes: 2 additions & 1 deletion crates/rollup/tests/test_helpers.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use std::net::SocketAddr;

use sov_mock_da::{MockAddress, MockDaConfig};
use sov_modules_rollup_blueprint::{RollupBlueprint, RollupProverConfig};
use sov_modules_rollup_blueprint::RollupBlueprint;
use sov_rollup_starter::mock_rollup::MockRollup;
use sov_stf_runner::RollupProverConfig;
use sov_stf_runner::{RollupConfig, RpcConfig, RunnerConfig, StorageConfig};
use stf_starter::genesis_config::GenesisPaths;
use tokio::sync::oneshot;
Expand Down

0 comments on commit 418b1be

Please sign in to comment.