We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In omni node we use the standard aura verifier and add it to a compatibility layer to allow old blocks with relay-chain consensus to be imported:
polkadot-sdk/cumulus/polkadot-omni-node/lib/src/nodes/aura.rs
Line 123 in 721f6d9
In the parachain template we use a verifier that does some extra equivocation checks:
polkadot-sdk/templates/parachain/node/src/service.rs
Line 151 in 721f6d9
EQUIVOCATION_LIMIT
Having the equivocation check is desirable, we should also use this one in the omni-node.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In omni node we use the standard aura verifier and add it to a compatibility layer to allow old blocks with relay-chain consensus to be imported:
polkadot-sdk/cumulus/polkadot-omni-node/lib/src/nodes/aura.rs
Line 123 in 721f6d9
In the parachain template we use a verifier that does some extra equivocation checks:
polkadot-sdk/templates/parachain/node/src/service.rs
Line 151 in 721f6d9
It checks that no more than
EQUIVOCATION_LIMIT
blocks are imported at the same slot.Having the equivocation check is desirable, we should also use this one in the omni-node.
The text was updated successfully, but these errors were encountered: