You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
skunert opened this issue
Feb 14, 2025
· 2 comments
· May be fixed by #7585
Assignees
Labels
C1-mentorA task where a mentor is available. Please indicate in the issue who the mentor could be.D0-easyCan be fixed primarily by duplicating and adapting code by an intermediate coder.
In the lookahead collator we have support for the --export-pov-path CLI arg. For some debugging scenarios, this will export PoVs that are send to the relay chain to the local file system.
tracing::debug!(target:LOG_TARGET, ?core_index, %hash, %number,"Submitting collation for core.");
The text was updated successfully, but these errors were encountered:
skunert
added
C1-mentor
A task where a mentor is available. Please indicate in the issue who the mentor could be.
D0-easy
Can be fixed primarily by duplicating and adapting code by an intermediate coder.
labels
Feb 14, 2025
In the lookahead collator we have support for the --export-pov-path CLI arg. For some debugging scenarios, this will export PoVs that are send to the relay chain to the local file system.
tracing::debug!(target: LOG_TARGET, ?core_index, %hash, %number, "Submitting collation for core.");
I do not think the params for exporting should be set inside SpawnTaskParams as that it is in substrate client and not cumulus client and the context is POV.
Opening a PR soon to see what I have done
C1-mentorA task where a mentor is available. Please indicate in the issue who the mentor could be.D0-easyCan be fixed primarily by duplicating and adapting code by an intermediate coder.
In the lookahead collator we have support for the
--export-pov-path
CLI arg. For some debugging scenarios, this will export PoVs that are send to the relay chain to the local file system.polkadot-sdk/cumulus/client/consensus/aura/src/collators/lookahead.rs
Line 444 in 3b2a1db
The slot-based collator does not currently support this, so we should add it.
Needs to be added to the params:
polkadot-sdk/substrate/client/service/src/builder.rs
Line 359 in 1866c3b
Then we need to export it in the collation-task:
polkadot-sdk/cumulus/client/consensus/aura/src/collators/slot_based/collation_task.rs
Line 150 in 1866c3b
The text was updated successfully, but these errors were encountered: