Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
2c771e2c
Commit
2c771e2c
authored
4 years ago
by
Joshy Orndorff
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Minor fixes and clarifications (#333)
parent
7fe3b32a
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cumulus/client/consensus/common/src/lib.rs
+4
-4
4 additions, 4 deletions
cumulus/client/consensus/common/src/lib.rs
with
4 additions
and
4 deletions
cumulus/client/consensus/common/src/lib.rs
+
4
−
4
View file @
2c771e2c
...
...
@@ -513,7 +513,7 @@ where
/// The result of [`ParachainConsensus::produce_candidate`].
pub
struct
ParachainCandidate
<
B
>
{
/// The block that was buil
d
for this candidate.
/// The block that was buil
t
for this candidate.
pub
block
:
B
,
/// The proof that was recorded while building the block.
pub
proof
:
sp_trie
::
StorageProof
,
...
...
@@ -523,11 +523,11 @@ pub struct ParachainCandidate<B> {
///
/// The collator will call [`Self::produce_candidate`] every time there is a free core for the parachain
/// this collator is collating for. It is the job of the consensus implementation to decide if this
/// specific collator should build candidate for the given relay chain block. The consensus
/// implementation could for example check
if
this specific collator is part of
the validator
.
/// specific collator should build
a
candidate for the given relay chain block. The consensus
/// implementation could
,
for example
,
check
whether
this specific collator is part of
a staked set
.
#[async_trait::async_trait]
pub
trait
ParachainConsensus
<
B
:
BlockT
>
:
Send
+
Sync
+
dyn_clone
::
DynClone
{
/// Produce a new candidate at the given parent block.
/// Produce a new candidate at the given parent block
and relay-parent blocks
.
///
/// Should return `None` if the consensus implementation decided that it shouldn't build a
/// candidate or if there occurred any error.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment