Minor tweaks

This commit is contained in:
Luke Parker 2022-10-21 05:35:37 -04:00
parent f1532356a0
commit 0a58d66958
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
2 changed files with 1 additions and 5 deletions

View file

@ -2,7 +2,6 @@ use std::sync::Arc;
use sc_service::{error::Error as ServiceError, Configuration, TaskManager};
use sc_executor::NativeElseWasmExecutor;
use sc_client_api::Backend;
use sc_telemetry::{Telemetry, TelemetryWorker};
use serai_runtime::{self, opaque::Block, RuntimeApi};
@ -88,7 +87,7 @@ pub fn new_full(config: Configuration) -> Result<TaskManager, ServiceError> {
mut task_manager,
import_queue,
keystore_container,
select_chain,
select_chain: _,
other: mut telemetry,
transaction_pool,
} = new_partial(&config)?;

View file

@ -35,9 +35,6 @@ use pallet_transaction_payment::CurrencyAdapter;
/// An index to a block.
pub type BlockNumber = u32;
/// Signature type
pub type Signature = sp_core::sr25519::Signature;
/// Account ID type, equivalent to a public key
pub type AccountId = sp_core::sr25519::Public;