Skip to content

Commit

Permalink
delete bridge backend client
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Oct 7, 2024
1 parent 084fca6 commit abfc06c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 40 deletions.
34 changes: 0 additions & 34 deletions src/bridge_backend_client.rs

This file was deleted.

8 changes: 3 additions & 5 deletions src/framework.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use super::{
traits::{LogProvider, LogProviderErased, NodeT},
Result,
};
use crate::{bridge_backend::BridgeBackendNodeCluster, prover::Prover, utils::tail_file};
use crate::{bridge_backend::BridgeBackendNode, prover::Prover, utils::tail_file};

pub struct TestContext {
pub config: TestConfig,
Expand All @@ -36,7 +36,7 @@ impl TestContext {
pub struct TestFramework {
ctx: TestContext,
pub bitcoin_nodes: BitcoinNodeCluster,
pub bridge_backend_nodes: BridgeBackendNodeCluster,
pub bridge_backend: Option<BridgeBackendNode>,
pub sequencer: Option<Sequencer>,
pub prover: Option<Prover>,
pub full_node: Option<FullNode>,
Expand All @@ -62,12 +62,10 @@ impl TestFramework {
let ctx = TestContext::new(config).await;

let bitcoin_nodes = BitcoinNodeCluster::new(&ctx).await?;
let bridge_backend_nodes = BridgeBackendNodeCluster::new(&ctx).await?;

// tokio::time::sleep(std::time::Duration::from_secs(30)).await;
Ok(Self {
bitcoin_nodes,
bridge_backend_nodes,
bridge_backend: None,
sequencer: None,
prover: None,
full_node: None,
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pub mod bitcoin;
pub mod bridge_backend;
// mod bridge_backend_client;
mod client;
pub mod config;
mod docker;
Expand Down

0 comments on commit abfc06c

Please sign in to comment.