From 6f435058723868c09ac015472e97a7ec0695ac39 Mon Sep 17 00:00:00 2001 From: Fedor Sakharov Date: Tue, 5 Dec 2023 10:10:50 +0100 Subject: [PATCH] chore: ignore tests until solution with foundry is found (#315) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What ❔ ## Why ❔ ## Checklist - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `cargo fmt`. --- tx-sender/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tx-sender/src/lib.rs b/tx-sender/src/lib.rs index 1bf85766..18ed1c3d 100644 --- a/tx-sender/src/lib.rs +++ b/tx-sender/src/lib.rs @@ -290,6 +290,7 @@ mod tests { } #[tokio::test(flavor = "multi_thread")] + #[ignore] async fn test_tx_price_bumps() { let anvil = Anvil::new().arg("--no-mining").spawn(); @@ -371,6 +372,7 @@ mod tests { } #[tokio::test(flavor = "multi_thread")] + #[ignore] async fn retry_sending_single_eip1559_tx() { let anvil = Anvil::new().arg("--no-mining").spawn();