Skip to content

Commit

Permalink
Style fix for cargo fmt check
Browse files Browse the repository at this point in the history
  • Loading branch information
staffik committed Nov 1, 2023
1 parent d0a8e78 commit 330fb76
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/primitives-core/src/runtime/fees.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,13 @@ pub fn transfer_send_fee(
(true, AccountType::EthImplicitAccount) => transfer_fee,
// Extra fees for the CreateAccount and AddFullAccessKey.
(true, AccountType::NearImplicitAccount) => {
<<<<<<< HEAD
transfer_fee
+ cfg.fee(ActionCosts::create_account).send_fee(sender_is_receiver)
+ cfg.fee(ActionCosts::add_full_access_key).send_fee(sender_is_receiver)
=======
transfer_fee + create_account_fee + add_access_key_fee
>>>>>>> a96103cbc (Style fix for cargo fmt check)
}
}
}

0 comments on commit 330fb76

Please sign in to comment.