Skip to content

Commit 169e9cb

Browse files
Fix broken eth client tests by replacing the public node url with one that works (#186)
1 parent 88e3eb4 commit 169e9cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/SequenceSDK/Ethereum/Tests/SequenceEthClientTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Sequence.Ethereum.Tests
1717
public class SequenceEthClientTests
1818
{
1919
static readonly string testnetUrl = "http://localhost:8545/";
20-
static readonly string publicPolygonRpc = "https://polygon-bor.publicnode.com";
20+
static readonly string publicPolygonRpc = "https://polygon-rpc.com/";
2121
private static string[] urls = new string[] { testnetUrl, publicPolygonRpc };
2222
float blockTimeInSeconds = 2f;
2323
IRpcClient failingClient = new FailingRpcClient();

0 commit comments

Comments
 (0)