Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@1.95.0
with:
components: rustfmt, clippy

Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@1.95.0

- name: Cache Cargo dependencies
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.91.0"
channel = "1.95.0"
components = ["cargo", "clippy", "rustc", "rust-std", "rustfmt"]
3 changes: 3 additions & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
reorder_imports = true
use_small_heuristics = "Max"
use_field_init_shorthand = true
3 changes: 3 additions & 0 deletions src/util/gen_account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ mod tests {
}

#[test]
#[ignore = "brute-force scan of 1M key derivations; manual lookup utility, too slow for CI; run with `cargo test -- --ignored`"]
fn test_find_account_by_address() {
// Find account ID for a specific address
let target_address = "0x3ece3a612e4e8849a3eaf093c61683b1370f3418";
Expand Down Expand Up @@ -308,6 +309,7 @@ mod tests {
}

#[tokio::test]
#[ignore = "requires a running node at localhost:8545; run with `cargo test -- --ignored`"]
async fn test_check_account_balances() {
use crate::eth::EthHttpCli;

Expand Down Expand Up @@ -367,6 +369,7 @@ mod tests {
}

#[tokio::test]
#[ignore = "requires a running node at localhost:8545; run with `cargo test -- --ignored`"]
async fn test_faucet_eth_to_accounts() {
use crate::eth::{EthHttpCli, TxnBuilder};
use alloy::primitives::U256;
Expand Down
Loading