Skip to content

Commit

Permalink
Missed simplified cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsanchezq committed Jun 10, 2021
1 parent 7c1504e commit 90ab0b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jcli/src/jcli_lib/transaction/simplified.rs
Expand Up @@ -53,7 +53,7 @@ impl MakeTransaction {
pub fn exec(self) -> Result<(), Error> {
let secret_key = read_ed25519_secret_key_from_file(&self.secret)?;
let (receiver_secret_key, receiver_address) = create_receiver_secret_key_and_address()?;
let fragment_id = simplified_transaction(
let fragment_id = make_transaction(
self.sender_account,
receiver_address.clone(),
secret_key,
Expand Down Expand Up @@ -103,7 +103,7 @@ fn create_receiver_secret_key_and_address(
}

#[allow(clippy::too_many_arguments)]
pub fn simplified_transaction(
pub fn make_transaction(
sender_account: interfaces::Address,
receiver_address: interfaces::Address,
secret_key: EitherEd25519SecretKey,
Expand Down

0 comments on commit 90ab0b3

Please sign in to comment.