Skip to content

Commit 77a1d1c

Browse files
committed
GH-598: add public rpc url for eth mainnet
1 parent 268eeba commit 77a1d1c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

node/tests/contract_test.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ fn masq_erc20_contract_exists_on_polygon_mainnet_integration() {
133133

134134
#[test]
135135
fn masq_erc20_contract_exists_on_ethereum_mainnet_integration() {
136-
let blockchain_urls = vec!["https://mainnet.infura.io/v3/0ead23143b174f6983c76f69ddcf4026"];
136+
let blockchain_urls = vec![
137+
"https://eth.llamarpc.com",
138+
"https://mainnet.infura.io/v3/0ead23143b174f6983c76f69ddcf4026",
139+
];
137140
let chain = Chain::EthMainnet;
138141

139142
let assertion_body = |url, chain| assert_contract_existence(url, chain, "MASQ", 18);
@@ -207,7 +210,10 @@ fn assert_total_supply(
207210

208211
#[test]
209212
fn max_token_supply_matches_corresponding_constant_integration() {
210-
let blockchain_urls = vec!["https://mainnet.infura.io/v3/0ead23143b174f6983c76f69ddcf4026"];
213+
let blockchain_urls = vec![
214+
"https://eth.llamarpc.com",
215+
"https://mainnet.infura.io/v3/0ead23143b174f6983c76f69ddcf4026",
216+
];
211217
let chain = Chain::EthMainnet;
212218

213219
let assertion_body = |url, chain| assert_total_supply(url, chain, MASQ_TOTAL_SUPPLY);

0 commit comments

Comments
 (0)