Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
WIP: use Env directly as generatic parameter for FullDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
octol committed Mar 25, 2020
1 parent 888ac9c commit 9937353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/node/rpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub struct BabeDeps {
}

/// Full client dependencies.
pub struct FullDeps<C, P, SC, B, E, N, RA, VR> {
pub struct FullDeps<C, P, SC, Env> {
/// The client instance to use.
pub client: Arc<C>,
/// Transaction pool instance.
Expand All @@ -82,7 +82,7 @@ pub struct FullDeps<C, P, SC, B, E, N, RA, VR> {
pub shared_voter_state: SharedVoterState<
<Block as BlockT>::Hash,
NumberFor<Block>,
Environment<B, E, Block, N, RA, SC, VR>,
Env,
>,
}

Expand Down

0 comments on commit 9937353

Please sign in to comment.