Skip to content

Commit

Permalink
Update examples/transactions/examples/send_eip1559_tx.rs
Browse files Browse the repository at this point in the history
Co-authored-by: DaniPopes <[email protected]>
  • Loading branch information
zerosnacks and DaniPopes authored May 6, 2024
1 parent 4f8bec8 commit 61f29df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/transactions/examples/send_eip1559_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async fn main() -> Result<()> {
// Send the transaction and wait for the receipt.
let pending_tx = provider.send_transaction(tx).await?;

println!("Pending transaction...{:?}", pending_tx.tx_hash());
println!("Pending transaction... {}", pending_tx.tx_hash());

// Wait for the transaction to be included.
let receipt = pending_tx.get_receipt().await?;
Expand Down

0 comments on commit 61f29df

Please sign in to comment.