Skip to content

Commit

Permalink
qol
Browse files Browse the repository at this point in the history
  • Loading branch information
markopoloparadox committed Dec 2, 2024
1 parent bbc6374 commit 6574a27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions avail-rust/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,11 @@ where
let address = account.public_key().to_account_id().to_string();
let call_name = call.call_name();
let pallet_name = call.pallet_name();
let nonce = &params.4 .0;
debug!(
target: "transaction",
"Signing and submitting new transaction. Account: {}, Pallet Name: {}, Call Name: {}",
address, pallet_name, call_name
"Signing and submitting new transaction. Account: {}, Nonce: {:?}, Pallet Name: {}, Call Name: {}",
address, nonce, pallet_name, call_name
);
}
let tx_hash = tx_client.sign_and_submit(call, account, params).await?;
Expand Down

0 comments on commit 6574a27

Please sign in to comment.