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
4e7e23fa
Commit
4e7e23fa
authored
2 years ago
by
Michael Müller
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Allow specifying immediate finalize for `manual-seal` (#12106)
Co-authored-by:
Alexander Theißen
<
alex.theissen@me.com
>
parent
a4d0c99e
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
substrate/client/consensus/manual-seal/src/lib.rs
+54
-0
54 additions, 0 deletions
substrate/client/consensus/manual-seal/src/lib.rs
with
54 additions
and
0 deletions
substrate/client/consensus/manual-seal/src/lib.rs
+
54
−
0
View file @
4e7e23fa
...
...
@@ -247,6 +247,60 @@ pub async fn run_instant_seal<B, BI, CB, E, C, TP, SC, CIDP, P>(
.await
}
/// Runs the background authorship task for the instant seal engine.
/// instant-seal creates a new block for every transaction imported into
/// the transaction pool.
///
/// This function will finalize the block immediately as well. If you don't
/// want this behavior use `run_instant_seal` instead.
pub
async
fn
run_instant_seal_and_finalize
<
B
,
BI
,
CB
,
E
,
C
,
TP
,
SC
,
CIDP
,
P
>
(
InstantSealParams
{
block_import
,
env
,
client
,
pool
,
select_chain
,
consensus_data_provider
,
create_inherent_data_providers
,
}:
InstantSealParams
<
B
,
BI
,
E
,
C
,
TP
,
SC
,
CIDP
,
P
>
,
)
where
B
:
BlockT
+
'static
,
BI
:
BlockImport
<
B
,
Error
=
sp_consensus
::
Error
,
Transaction
=
sp_api
::
TransactionFor
<
C
,
B
>>
+
Send
+
Sync
+
'static
,
C
:
HeaderBackend
<
B
>
+
Finalizer
<
B
,
CB
>
+
ProvideRuntimeApi
<
B
>
+
'static
,
CB
:
ClientBackend
<
B
>
+
'static
,
E
:
Environment
<
B
>
+
'static
,
E
::
Proposer
:
Proposer
<
B
,
Proof
=
P
,
Transaction
=
TransactionFor
<
C
,
B
>>
,
SC
:
SelectChain
<
B
>
+
'static
,
TransactionFor
<
C
,
B
>
:
'static
,
TP
:
TransactionPool
<
Block
=
B
>
,
CIDP
:
CreateInherentDataProviders
<
B
,
()
>
,
P
:
Send
+
Sync
+
'static
,
{
// Creates and finalizes blocks as soon as transactions are imported
// into the transaction pool.
let
commands_stream
=
pool
.import_notification_stream
()
.map
(|
_
|
EngineCommand
::
SealNewBlock
{
create_empty
:
false
,
finalize
:
true
,
parent_hash
:
None
,
sender
:
None
,
});
run_manual_seal
(
ManualSealParams
{
block_import
,
env
,
client
,
pool
,
commands_stream
,
select_chain
,
consensus_data_provider
,
create_inherent_data_providers
,
})
.await
}
#[cfg(test)]
mod
tests
{
use
super
::
*
;
...
...
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