Skip to content

Commit

Permalink
Fix all compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Sep 19, 2024
1 parent de7779c commit e6db038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/relayer/src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub async fn handle_email(email: String) -> Result<EmailWalletEvent> {
// ),
// proof: email_proof,
// };
info!(LOG, "Account creation data {:?}", data; "func" => function_name!());
info!(LOG, "Account creation data {:?}", email_proof; "func" => function_name!());
let res = CLIENT.create_account(email_proof).await?;
info!(LOG, "account creation tx hash: {}", res; "func" => function_name!());
let wallet_addr = CLIENT.get_wallet_addr_from_salt(&account_salt.0).await?;
Expand Down Expand Up @@ -330,7 +330,7 @@ pub async fn handle_email(email: String) -> Result<EmailWalletEvent> {
num_recipient_email_addr_bytes: U256::from(num_recipient_email_addr_bytes),
recipient_eth_addr,
fee_token_name,
fee_per_gas,
fee_per_gas: *FEE_PER_GAS.get().unwrap(),
execute_call_data,
extension_name,
new_wallet_owner,
Expand Down

0 comments on commit e6db038

Please sign in to comment.