Skip to content

Commit

Permalink
update: added Blast rpc for eth
Browse files Browse the repository at this point in the history
  • Loading branch information
heemankv committed Aug 16, 2024
1 parent 92aa145 commit 6c03f7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
cargo llvm-cov clean --workspace
- name: Run llvm-cov
env:
ETHEREUM_BLAST_RPC_URL: ${{ secrets.ETHEREUM_BLAST_RPC_URL }}
run: |
cargo llvm-cov nextest --release --lcov --output-path lcov.info --test-threads=1
Expand Down
2 changes: 1 addition & 1 deletion crates/settlement-clients/ethereum/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ lazy_static! {
.expect("Path contains invalid Unicode")
.to_string();
static ref PORT: u16 = 3000_u16;
static ref ETH_RPC: String = "https://eth.llamarpc.com".to_string();
static ref ETH_RPC: String = get_env_var_or_panic("ETHEREUM_BLAST_RPC_URL");
static ref SHOULD_IMPERSONATE_ACCOUNT: bool = get_env_var_or_panic("TEST_IMPERSONATE_OPERATOR") == *"1";
static ref TEST_DUMMY_CONTRACT_ADDRESS: String = get_env_var_or_panic("TEST_DUMMY_CONTRACT_ADDRESS");
static ref STARKNET_OPERATOR_ADDRESS: Address =
Expand Down

0 comments on commit 6c03f7b

Please sign in to comment.