Fix clippy lint for `cargo test -p zcash_client_sqlite`

This commit is contained in:
Jack Grigg 2024-09-23 16:17:10 +00:00
parent ebd849f3e1
commit 6bd2f1f7ab
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,6 @@
//! Generalised for sharing across the Sapling and Orchard implementations.
use crate::{
error::SqliteClientError,
testing::{db::TestDbFactory, BlockCache},
SAPLING_TABLES_PREFIX,
};
@ -17,6 +16,9 @@ use {
zcash_client_backend::data_api::testing::orchard::OrchardPoolTester,
};
#[cfg(feature = "transparent-inputs")]
use crate::error::SqliteClientError;
pub(crate) trait ShieldedPoolPersistence {
const TABLES_PREFIX: &'static str;
}