mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 23:31:07 +00:00
Drive by docs fix re minimum_balance (#3528)
This commit is contained in:
committed by
Bastian Köcher
parent
e3d0c60a31
commit
42750edd52
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user