-
Notifications
You must be signed in to change notification settings - Fork 711
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
title: Make syncing service an argument of `build_network` | ||
|
||
doc: | ||
- audience: Node Dev | ||
description: | | ||
`build_network` no longer creates syncing engine internally, it now takes a handle to syncing service is an | ||
argument instead. In most cases typical syncing engine with polkadot syncing strategy and default block downloader | ||
can be created with newly introduced `sc_service::build_default_syncing_engine()` function, but lower-level | ||
`build_default_block_downloader` also exists for those needing more customization. | ||
|
||
These changes allow developers higher than ever control over syncing implementation. | ||
|
||
crates: | ||
- name: cumulus-client-service | ||
bump: patch | ||
- name: polkadot-service | ||
bump: patch | ||
- name: sc-consensus | ||
bump: major | ||
- name: sc-service | ||
bump: major | ||
- name: sc-network-sync | ||
bump: major |