From 14eb537b1bae9dfdb071119d759604ebe4a3943c Mon Sep 17 00:00:00 2001 From: Juan Ignacio Rios Date: Mon, 5 Aug 2024 12:22:37 +0200 Subject: [PATCH] Fix project transition event --- pallets/funding/src/functions/misc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pallets/funding/src/functions/misc.rs b/pallets/funding/src/functions/misc.rs index a09e7e86b..eff53720f 100644 --- a/pallets/funding/src/functions/misc.rs +++ b/pallets/funding/src/functions/misc.rs @@ -408,8 +408,8 @@ impl Pallet { // * Update storage * ProjectsDetails::::insert(project_id, project_details); - // // * Emit events * - // Self::deposit_event(Event::ProjectPhaseTransition { project_id, phase: next_round }); + // * Emit events * + Self::deposit_event(Event::ProjectPhaseTransition { project_id, phase: next_round }); Ok(()) }