-
Notifications
You must be signed in to change notification settings - Fork 11
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
remove useless NimbusBlockImport #43
Conversation
Won't parachain nodes import blocks as best this way? Is that desired now? |
It was a suggestion from parity but for some reasons it doesn't work |
What are you trying to do? Maybe I can share an idea or two. |
Context for the change: paritytech/polkadot-sdk#4333 (comment) |
A bit more context to @JoshOrndorff (if you are still around, "Hi" btw :p). Right now import is done from blocks marked as "best" by the relay, but that is slow for user interaction (tx take like 18s to be "validated") so we are now using the "imported" block directly. |
@girazoki Are you fine with the changes included in this PR? |
* remove useless NimbusBlockImport * fix format * remove use of new_with_delayed_best_block from template * keep but deprecate old behaviour --------- Co-authored-by: Éloïs <[email protected]>
This change was authored by @librelois and is part of the work related to the transaction pool improvements on moonbeam.
Historically aura was overcharging fork strategy for parachain at block import, but it's seems no longer necessary.