From 5d86995c147f22d73c112705f56e0369e9cdf3d5 Mon Sep 17 00:00:00 2001 From: Enrique Ortiz Date: Mon, 8 Apr 2024 15:59:43 +0200 Subject: [PATCH] fix: use another address with balance for trace call example --- examples/transactions/examples/trace_call.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/transactions/examples/trace_call.rs b/examples/transactions/examples/trace_call.rs index 55d4c2ee..9d8e9e99 100644 --- a/examples/transactions/examples/trace_call.rs +++ b/examples/transactions/examples/trace_call.rs @@ -17,7 +17,7 @@ async fn main() -> Result<()> { let provider = ProviderBuilder::new().on_reqwest_http(rpc_url)?; // Create two users, Alice and Bob. - let alice = address!("f39Fd6e51aad88F6F4ce6aB8827279cffFb92266"); + let alice = address!("d8dA6BF26964aF9D7eEd9e03E53415D37aA96045"); let bob = address!("70997970C51812dc3A010C7d01b50e0d17dc79C8"); // Create a transaction to send 100 wei from Alice to Bob.