diff --git a/examples/transactions/examples/send_eip1559_tx.rs b/examples/transactions/examples/send_eip1559_tx.rs index 8341f78a..2e459155 100644 --- a/examples/transactions/examples/send_eip1559_tx.rs +++ b/examples/transactions/examples/send_eip1559_tx.rs @@ -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?;