pub type TransactionPaymentEvent = TransactionPaymentEvent<u128, AccountId>;
pub enum TransactionPaymentEvent { TransactionFeePaid { who: AccountId, actual_fee: u128, tip: u128, }, }
A transaction fee actual_fee, of which tip was added to the minimum inclusion fee, has been paid by who.
actual_fee
tip
who
who: AccountId
actual_fee: u128
tip: u128