Skip to content

Commit

Permalink
make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
graydon committed Aug 30, 2024
1 parent 2408ad5 commit f74cbf5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/soroban-rpc/lib/preflight/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ extern crate soroban_simulation_prev;
mod curr {
pub(crate) use soroban_env_host_curr as soroban_env_host;
pub(crate) use soroban_simulation_curr as soroban_simulation;
#[allow(clippy::duplicate_mod)]
pub(crate) mod shared;
}

#[path = "."]
mod prev {
pub(crate) use soroban_env_host_prev as soroban_env_host;
pub(crate) use soroban_simulation_prev as soroban_simulation;
#[allow(clippy::duplicate_mod)]
pub(crate) mod shared;
}

Expand Down

0 comments on commit f74cbf5

Please sign in to comment.