mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-02 13:23:13 +00:00
Remove cfgsync config facade; use direct modules
This commit is contained in:
parent
a48bf0415e
commit
7a6db26fe1
@ -288,7 +288,10 @@ impl CleanupGuard for ComposeCleanupGuard {
|
|||||||
mod tests {
|
mod tests {
|
||||||
use std::{collections::HashMap, net::Ipv4Addr};
|
use std::{collections::HashMap, net::Ipv4Addr};
|
||||||
|
|
||||||
use cfgsync::config::{Host, PortOverrides, create_node_configs};
|
use cfgsync::{
|
||||||
|
config::builder::create_node_configs,
|
||||||
|
host::{Host, PortOverrides},
|
||||||
|
};
|
||||||
use groth16::Fr;
|
use groth16::Fr;
|
||||||
use nomos_core::{
|
use nomos_core::{
|
||||||
mantle::{GenesisTx as GenesisTxTrait, ledger::NoteId},
|
mantle::{GenesisTx as GenesisTxTrait, ledger::NoteId},
|
||||||
|
|||||||
@ -1,8 +0,0 @@
|
|||||||
pub use crate::host::{Host, HostKind, PortOverrides};
|
|
||||||
|
|
||||||
mod builder;
|
|
||||||
pub use builder::create_node_configs;
|
|
||||||
pub mod kms;
|
|
||||||
pub mod providers;
|
|
||||||
pub mod tracing;
|
|
||||||
pub mod validation;
|
|
||||||
@ -1,6 +1,12 @@
|
|||||||
pub mod client;
|
pub mod client;
|
||||||
pub mod config;
|
|
||||||
pub mod host;
|
pub mod host;
|
||||||
|
pub mod config {
|
||||||
|
pub mod builder;
|
||||||
|
pub mod kms;
|
||||||
|
pub mod providers;
|
||||||
|
pub mod tracing;
|
||||||
|
pub mod validation;
|
||||||
|
}
|
||||||
pub mod network;
|
pub mod network;
|
||||||
pub mod repo;
|
pub mod repo;
|
||||||
pub mod server;
|
pub mod server;
|
||||||
|
|||||||
@ -10,10 +10,7 @@ use testing_framework_config::topology::configs::{
|
|||||||
};
|
};
|
||||||
use tokio::{sync::oneshot::Sender, time::timeout};
|
use tokio::{sync::oneshot::Sender, time::timeout};
|
||||||
|
|
||||||
use crate::{
|
use crate::{config::builder::create_node_configs, host::Host, server::CfgSyncConfig};
|
||||||
config::{Host, create_node_configs},
|
|
||||||
server::CfgSyncConfig,
|
|
||||||
};
|
|
||||||
|
|
||||||
pub enum RepoResponse {
|
pub enum RepoResponse {
|
||||||
Config(Box<GeneralConfig>),
|
Config(Box<GeneralConfig>),
|
||||||
|
|||||||
@ -17,7 +17,7 @@ use testing_framework_config::{
|
|||||||
use tokio::sync::oneshot::channel;
|
use tokio::sync::oneshot::channel;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
config::{Host, PortOverrides},
|
host::{Host, PortOverrides},
|
||||||
repo::{ConfigRepo, RepoResponse},
|
repo::{ConfigRepo, RepoResponse},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user