-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support syncing from LightSyncState
#12
Labels
I5-enhancement
An additional feature request.
Comments
cc #60 |
Yeah that should be tackled first |
fixxxedpoint
pushed a commit
to fixxxedpoint/polkadot-sdk
that referenced
this issue
Aug 5, 2024
…tworkWorker. Every such implementation should provide authentication and muxing mechanisms. (paritytech#9)" (paritytech#12) This reverts commit 8522cd0.
fixxxedpoint
added a commit
to fixxxedpoint/polkadot-sdk
that referenced
this issue
Aug 5, 2024
…etworkWorker. Every such implementation should provide authentication and muxing mechanisms. (paritytech#9)" (paritytech#12) This reverts commit 8b80e54.
liuchengxu
added a commit
to subcoin-project/polkadot-sdk
that referenced
this issue
Sep 20, 2024
* Add Dockerfile * Docker cache layer * Remove debug info from release profile * Remove build for docker branch * Add TODO
Ujjwal0501
pushed a commit
to Mind-Crypt/polkadot-sdk
that referenced
this issue
Jan 14, 2025
Fix missing CustomDispatchFee impls for legacy weights
claravanstaden
added a commit
to claravanstaden/polkadot-sdk
that referenced
this issue
Feb 25, 2025
* merge damage * merge damage * integrate rewards trait * fmt * cleanup * tests * adds test * additional checks * adds reward checks for inbound * outbound queue rewards test * last fix * cleanup reward balance type * use bp-relayers instead of pallet-bridge-relayers * Update bridges/snowbridge/primitives/core/src/reward.rs Co-authored-by: Vincent Geddes <[email protected]> * rename method * use single xcm delivery failure type * fix test * tabs --------- Co-authored-by: Vincent Geddes <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have the
LightSyncState
:https://github.com/paritytech/substrate/blob/2924b0183764b18ad4d79037c67652fb2f1aaa01/client/sync-state-rpc/src/lib.rs#L112-L125
This is for example used by smoldot to not sync from genesis to the tip of the chain. So, this decreases the time to sync to the tip of the chain. The other advantage is also that, if put after a forced set change, warp sync still works as it doesn't encounter the forced set change.
The
LightSyncState
is an optional extension of the chain spec as it requires that a chain is using Babe/Grandpa. So, currently only Polkadot/Kusama/Testnets are using this. An implementation should also not enforce that these values are being passed.The text was updated successfully, but these errors were encountered: