Skip to content

Commit

Permalink
chore: fmt code
Browse files Browse the repository at this point in the history
  • Loading branch information
canhtrinh committed Mar 17, 2024
1 parent 3a15f92 commit d585dca
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion contracts/axelar-gas-service/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ pub(crate) fn gas_paid_for_contract_call(
);
env.events().publish(
topics,
(destination_address, payload, refund_address, token_addr, amount),
(
destination_address,
payload,
refund_address,
token_addr,
amount,
),
);
}

Expand Down
8 changes: 7 additions & 1 deletion contracts/axelar-gas-service/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,13 @@ fn pay_gas_for_contract_call() {
sender,
destination_chain,
),
(destination_address, payload, refund_address, token_address, gas_amount),
(
destination_address,
payload,
refund_address,
token_address,
gas_amount,
),
);
}

Expand Down

0 comments on commit d585dca

Please sign in to comment.