Skip to content

Commit

Permalink
Update src/commands/tokens/send_ft/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Vlad Frolov <frolvlad@gmail.com>
  • Loading branch information
FroVolod and frol authored Feb 16, 2025
1 parent 3859395 commit f139a9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/tokens/send_ft/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ pub fn get_prepopulated_transaction(
return Ok(crate::commands::PrepopulatedTransaction {
signer_id: signer_id.clone(),
receiver_id: ft_contract_account_id.clone(),
actions: vec![action_storage_deposit, action_ft_transfer.clone()],
actions: vec![action_storage_deposit, action_ft_transfer],
});
}

Ok(crate::commands::PrepopulatedTransaction {
signer_id: signer_id.clone(),
receiver_id: ft_contract_account_id.clone(),
actions: vec![action_ft_transfer.clone()],
actions: vec![action_ft_transfer],
})
}

Expand Down

0 comments on commit f139a9e

Please sign in to comment.