diff --git a/file_store/src/cli/mod.rs b/file_store/src/cli/mod.rs index 81b66a30e..5eaccb9f3 100644 --- a/file_store/src/cli/mod.rs +++ b/file_store/src/cli/mod.rs @@ -1,8 +1,6 @@ pub mod bucket; pub mod dump; pub mod dump_mobile_rewards; -pub mod import_iot_rewards; -pub mod import_mobile_rewards; pub mod info; use crate::Result; diff --git a/file_store/src/main.rs b/file_store/src/main.rs index a7d91492e..0f56edce2 100644 --- a/file_store/src/main.rs +++ b/file_store/src/main.rs @@ -1,5 +1,4 @@ use clap::Parser; -use file_store::cli::{import_iot_rewards, import_mobile_rewards}; use file_store::{ cli::{bucket, dump, dump_mobile_rewards, info}, Result, Settings, @@ -31,8 +30,6 @@ pub enum Cmd { Dump(dump::Cmd), Bucket(Box), DumpMobileRewards(dump_mobile_rewards::Cmd), - ImportMobileRewards(import_mobile_rewards::Cmd), - ImportIotRewards(import_iot_rewards::Cmd), } impl Cmd { @@ -42,8 +39,6 @@ impl Cmd { Cmd::Dump(cmd) => cmd.run(&settings).await, Cmd::Bucket(cmd) => cmd.run(&settings).await, Cmd::DumpMobileRewards(cmd) => cmd.run(&settings).await, - Cmd::ImportMobileRewards(cmd) => cmd.run(&settings).await, - Cmd::ImportIotRewards(cmd) => cmd.run(&settings).await, } } } diff --git a/iot_packet_verifier/src/verifier.rs b/iot_packet_verifier/src/verifier.rs index 9e96c5040..9725440b1 100644 --- a/iot_packet_verifier/src/verifier.rs +++ b/iot_packet_verifier/src/verifier.rs @@ -391,7 +391,6 @@ impl PacketWriter for &'_ mut Vec { } } -#[cfg(test)] mod tests { use super::*;