mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-23 10:51:10 +00:00
Add new event for registering deposits. (#4459)
This commit is contained in:
@@ -267,6 +267,8 @@ decl_event!(
|
|||||||
Transfer(AccountId, AccountId, Balance, Balance),
|
Transfer(AccountId, AccountId, Balance, Balance),
|
||||||
/// A balance was set by root (who, free, reserved).
|
/// A balance was set by root (who, free, reserved).
|
||||||
BalanceSet(AccountId, Balance, Balance),
|
BalanceSet(AccountId, Balance, Balance),
|
||||||
|
/// Some amount was deposited (e.g. for transaction fees).
|
||||||
|
Deposit(AccountId, Balance),
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -587,7 +589,7 @@ impl<T: Trait<I>, I: Instance> Module<T, I> {
|
|||||||
T::OnFreeBalanceZero::on_free_balance_zero(who);
|
T::OnFreeBalanceZero::on_free_balance_zero(who);
|
||||||
|
|
||||||
let mut reserved_balance = Self::reserved_balance(who);
|
let mut reserved_balance = Self::reserved_balance(who);
|
||||||
|
|
||||||
if !dust.is_zero() {
|
if !dust.is_zero() {
|
||||||
if reserved_balance >= T::ExistentialDeposit::get() {
|
if reserved_balance >= T::ExistentialDeposit::get() {
|
||||||
// any individual account cannot cause overflow in balance.
|
// any individual account cannot cause overflow in balance.
|
||||||
|
|||||||
Reference in New Issue
Block a user