This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Solves #483
This PR adds a "development service" to the parachain template node. When this development service is used, there is no backing relay chain and a much lighter service based on manual seal is used. The full parachain runtime is still used, and the parachain inherent is mocked.
Currently the block time is still set to 12 seconds to match real parachains, but it could be lowered considerably and the dev service will still work. Or we could mock the timestamp inherent so that the runtime still thinks it is 12 second blocks but it could be less wall clock time.
TODO: We are using the incorrect parachain block import in the import queue which means that peers' blocks will not be marked best when imported.
To test it out:
cc @shawntabrizi @kianenigma This is what I understood we want PBA students to use as a starting point for their frame assignments.