From 048106f0de2d3eb13396021feb45cb29f129b190 Mon Sep 17 00:00:00 2001 From: PraetorP Date: Thu, 08 Sep 2022 12:05:10 +0000 Subject: [PATCH] fix format --- --- a/pallets/app-promotion/src/lib.rs +++ b/pallets/app-promotion/src/lib.rs @@ -149,21 +149,21 @@ /// Amount of accrued interest BalanceOf, ), - + /// Staking was performed /// /// # Arguments /// * AccountId: ID of the staker /// * Balance : staking amount Stake(T::AccountId, BalanceOf), - + /// Unstaking was performed /// /// # Arguments /// * AccountId: ID of the staker /// * Balance : unstaking amount Unstake(T::AccountId, BalanceOf), - + /// The admin was set /// /// # Arguments -- gitstuff