Drive by docs fix re minimum_balance (#3528)

This commit is contained in:
Sergei Pepyakin
2019-09-02 13:21:01 +02:00
committed by Bastian Köcher
parent e3d0c60a31
commit 42750edd52
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 154,
impl_version: 158,
impl_version: 159,
apis: RUNTIME_API_VERSIONS,
};
+2 -2
View File
@@ -680,7 +680,7 @@ decl_module! {
/// Take the origin account as a stash and lock up `value` of its balance. `controller` will
/// be the account that controls it.
///
/// `value` must be more than the `existential_deposit` defined in the Balances module.
/// `value` must be more than the `minimum_balance` specified by `T::Currency`.
///
/// The dispatch origin for this call must be _Signed_ by the stash account.
///
@@ -759,7 +759,7 @@ decl_module! {
/// Schedule a portion of the stash to be unlocked ready for transfer out after the bond
/// period ends. If this leaves an amount actively bonded less than
/// T::Currency::existential_deposit(), then it is increased to the full amount.
/// T::Currency::minimum_balance(), then it is increased to the full amount.
///
/// Once the unlock period is done, you can call `withdraw_unbonded` to actually move
/// the funds out of management ready for transfer.