From 2dcd204ea625b210ad86e9c5fc66cd2211aa491c Mon Sep 17 00:00:00 2001 From: lumir-mrkva Date: Wed, 16 Feb 2022 18:32:56 +0100 Subject: [PATCH] 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 --- polkadot/runtime/parachains/src/paras/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/runtime/parachains/src/paras/mod.rs b/polkadot/runtime/parachains/src/paras/mod.rs index 5422cf1724..75fa5f8e01 100644 --- a/polkadot/runtime/parachains/src/paras/mod.rs +++ b/polkadot/runtime/parachains/src/paras/mod.rs @@ -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), }