Update docs on Imbalance in the Balances module (#2704)

* Update docs on `Imbalance` in the Balances module

* Update lib.rs
This commit is contained in:
Shawn Tabrizi
2019-05-28 15:10:19 +02:00
committed by Gavin Wood
parent 165716a0fe
commit 902c9d03f2
+2 -1
View File
@@ -51,7 +51,8 @@
//! deleted, then the account is said to be dead.
//! - **Imbalance:** A condition when some funds were credited or debited without equal and opposite accounting
//! (i.e. a difference between total issuance and account balances). Functions that result in an imbalance will
//! return an object of the `Imbalance` trait that must be handled.
//! return an object of the `Imbalance` trait that can be managed within your runtime logic. (If an imbalance is
//! simply dropped, it should automatically maintain any book-keeping such as total issuance.)
//! - **Lock:** A freeze on a specified amount of an account's free balance until a specified block number. Multiple
//! locks always operate over the same funds, so they "overlay" rather than "stack".
//! - **Vesting:** Similar to a lock, this is another, but independent, liquidity restriction that reduces linearly