Skip to content

Commit 72eab03

Browse files
committed
wtfff
1 parent 57c5ddc commit 72eab03

File tree

4 files changed

+15
-19
lines changed

4 files changed

+15
-19
lines changed

src/cli.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
pub mod catalog;
2-
pub mod chia_client;
3-
pub mod commands;
4-
pub mod csv;
5-
pub mod database;
6-
pub mod utils;
1+
mod chia_client;
2+
mod commands;
3+
mod csv;
4+
mod database;
5+
mod initiate_launch;
6+
mod utils;
77

8-
pub use catalog::*;
98
pub use chia_client::*;
109
pub use commands::*;
1110
pub use csv::*;
1211
pub use database::*;
12+
pub use initiate_launch::*;
1313
pub use utils::*;

src/cli/catalog.rs

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/cli/catalog/initiate_launch.rs renamed to src/cli/initiate_launch.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use chia_wallet_sdk::encode_address;
2-
31
use crate::cli::{
42
chia_client::ChiaRpcClient,
53
csv::load_catalog_premine_csv,
@@ -8,7 +6,8 @@ use crate::cli::{
86
Db, CATALOG_LAUNCH_CATS_PER_SPEND_KEY, CATALOG_LAUNCH_GENERATION_KEY,
97
CATALOG_LAUNCH_LAUNCHER_ID_KEY,
108
};
11-
use crate::primitives::CatalogConstants;
9+
use crate::CatalogConstants;
10+
use chia_wallet_sdk::encode_address;
1211

1312
pub async fn initiate_catalog_launch(testnet11: bool) -> Result<(), CliError> {
1413
println!("Welcome to the CATalog launch setup, deployer.");

src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
use chia_wallet_sdk::{DriverError, SpendContext};
22
use clvmr::NodePtr;
33

4-
pub mod cat_nft_metadata;
5-
pub mod cli;
6-
pub mod debug;
7-
pub mod drivers;
8-
pub mod layers;
9-
pub mod primitives;
4+
mod cat_nft_metadata;
5+
mod cli;
6+
mod debug;
7+
mod drivers;
8+
mod layers;
9+
mod primitives;
1010

1111
pub use cat_nft_metadata::*;
1212
pub use cli::*;

0 commit comments

Comments
 (0)