allow unused imports for now

This commit is contained in:
Bryan Stitt 2022-11-29 21:34:42 +00:00
parent c29a7118bb
commit 04d95f7234
3 changed files with 3 additions and 1 deletions

View File

@ -997,6 +997,7 @@ impl fmt::Display for Web3Connection {
}
mod tests {
#![allow(unused_imports)]
use super::*;
#[test]

View File

@ -846,6 +846,8 @@ impl Serialize for Web3Connections {
}
mod tests {
#![allow(unused_imports)]
// TODO: why is this allow needed? does tokio::test get in the way somehow?
use super::*;
use crate::rpcs::{blockchain::BlockId, provider::Web3Provider};
use ethers::types::Block;

View File

@ -9,7 +9,6 @@ use chrono::NaiveDateTime;
use entities::{rpc_accounting, rpc_key};
use hashbrown::HashMap;
use http::StatusCode;
use log::warn;
use migration::sea_orm::{
ColumnTrait, EntityTrait, PaginatorTrait, QueryFilter, QueryOrder, QuerySelect, Select,
};