corrected paras code validation event comments (#4932)

the comments we're flipped between accepted and rejected events causing confusion, but usage of events is correct
This commit is contained in:
lumir-mrkva
2022-02-16 18:32:56 +01:00
committed by GitHub
parent 7273c4b03f
commit 2dcd204ea6
+2 -2
View File
@@ -481,10 +481,10 @@ pub mod pallet {
/// The given para either initiated or subscribed to a PVF check for the given validation
/// code. `code_hash` `para_id`
PvfCheckStarted(ValidationCodeHash, ParaId),
/// The given validation code was rejected by the PVF pre-checking vote.
/// The given validation code was accepted by the PVF pre-checking vote.
/// `code_hash` `para_id`
PvfCheckAccepted(ValidationCodeHash, ParaId),
/// The given validation code was accepted by the PVF pre-checking vote.
/// The given validation code was rejected by the PVF pre-checking vote.
/// `code_hash` `para_id`
PvfCheckRejected(ValidationCodeHash, ParaId),
}