Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change whitespace
  • Loading branch information
expenses committed Nov 5, 2019
commit e659ee66919a6dea11b38145677ceb97fe331e16
3 changes: 1 addition & 2 deletions srml/balances/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,6 @@ decl_module! {
) {
let transactor = ensure_signed(origin)?;
let dest = T::Lookup::lookup(dest)?;

Self::transfer_inner(&transactor, &dest, value, ExistenceRequirement::AllowDeath)?;
}

Expand Down Expand Up @@ -465,7 +464,7 @@ decl_module! {
let dest = T::Lookup::lookup(dest)?;
<Self as Currency<_>>::transfer(&source, &dest, value)?;
}

/// Transfer some liquid free balance to another account, while checking that the transfer
/// will not kill the account.
///
Expand Down