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

Use correct executor for Westend #1053

Merged
merged 2 commits into from
Apr 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ pub fn westend_new_full(
Arc<impl ClientProvider<
Block,
TFullBackend<Block>,
TFullCallExecutor<Block, KusamaExecutor>,
TFullCallExecutor<Block, WestendExecutor>,
westend_runtime::RuntimeApi
>>,
FullNodeHandles,
Expand All @@ -667,7 +667,7 @@ pub fn westend_new_full(
slot_duration,
grandpa_pause,
westend_runtime::RuntimeApi,
KusamaExecutor
WestendExecutor
);

Ok((service, client, handles))
Expand Down