From c2a1d431bcb197cec5ccd9053e5696b69b264dc4 Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Sun, 28 Jul 2024 14:09:42 +0800 Subject: [PATCH] test: run tests against pathfinder (#635) --- starknet-accounts/tests/single_owner_account.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starknet-accounts/tests/single_owner_account.rs b/starknet-accounts/tests/single_owner_account.rs index 46d895f4..bc1febe8 100644 --- a/starknet-accounts/tests/single_owner_account.rs +++ b/starknet-accounts/tests/single_owner_account.rs @@ -32,7 +32,7 @@ fn create_sequencer_client() -> SequencerGatewayProvider { fn create_jsonrpc_client() -> JsonRpcClient { let rpc_url = std::env::var("STARKNET_RPC") - .unwrap_or_else(|_| "https://juno.rpc.sepolia.starknet.rs/rpc/v0_7".into()); + .unwrap_or_else(|_| "https://pathfinder.rpc.sepolia.starknet.rs/rpc/v0_7".into()); JsonRpcClient::new(HttpTransport::new(url::Url::parse(&rpc_url).unwrap())) }