mirror of
https://github.com/serai-dex/serai.git
synced 2025-03-12 09:26:51 +00:00
Minor tweaks
This commit is contained in:
parent
f1532356a0
commit
0a58d66958
2 changed files with 1 additions and 5 deletions
|
@ -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)?;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue