let user_balance = T::Currency::total_balance(&account_add);
Self::deposit_event(RawEvent::TaskCreated(account_add,user_balance));
user_balance 在控制台上打印帐户余额,但在发出事件时不起作用。
let user_balance = T::Currency::total_balance(&account_add);
Self::deposit_event(RawEvent::TaskCreated(account_add,user_balance));
user_balance 在控制台上打印帐户余额,但在发出事件时不起作用。