Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Mar 3, 2024
1 parent db6b489 commit 09cde81
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions node/bin/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![warn(missing_docs)]

fn main() -> sc_cli::Result<()> {
regionx_node::run()
}
3 changes: 0 additions & 3 deletions node/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#![warn(missing_docs)]
#![warn(unused_extern_crates)]

pub mod parachain;

mod cli;
Expand Down
2 changes: 1 addition & 1 deletion node/src/parachain/chain_spec.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use cumulus_primitives_core::ParaId;
use regionx_primitives::{opaque::Block, AccountId, Balance, Hash, Nonce, Signature};
use regionx_primitives::{AccountId, Signature};
use regionx_runtime::{AuraId, EXISTENTIAL_DEPOSIT};
use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup};
use sc_service::ChainType;
Expand Down
2 changes: 1 addition & 1 deletion node/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use std::sync::Arc;

use regionx_primitives::{opaque::Block, AccountId, Balance, Hash, Nonce};
use regionx_primitives::{opaque::Block, AccountId, Balance, Nonce};

pub use sc_rpc::DenyUnsafe;
use sc_transaction_pool_api::TransactionPool;
Expand Down

0 comments on commit 09cde81

Please sign in to comment.