feat(ethers-core): double anvil startup time (#1702)
* feat(ethers-core): double anvil startup time * feat(ethers-core): add timeout utils * chore: fmt Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
This commit is contained in:
parent
3926749213
commit
1e83b86233
|
@ -11,7 +11,7 @@ use std::{
|
||||||
};
|
};
|
||||||
|
|
||||||
/// How long we will wait for anvil to indicate that it is ready.
|
/// How long we will wait for anvil to indicate that it is ready.
|
||||||
const ANVIL_STARTUP_TIMEOUT_MILLIS: u64 = 5_000;
|
const ANVIL_STARTUP_TIMEOUT_MILLIS: u64 = 10_000;
|
||||||
|
|
||||||
/// An anvil CLI instance. Will close the instance when dropped.
|
/// An anvil CLI instance. Will close the instance when dropped.
|
||||||
///
|
///
|
||||||
|
@ -93,6 +93,7 @@ pub struct Anvil {
|
||||||
fork: Option<String>,
|
fork: Option<String>,
|
||||||
fork_block_number: Option<u64>,
|
fork_block_number: Option<u64>,
|
||||||
args: Vec<String>,
|
args: Vec<String>,
|
||||||
|
timeout: Option<u64>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Anvil {
|
impl Anvil {
|
||||||
|
@ -206,6 +207,13 @@ impl Anvil {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Sets the timeout which will be used when the `anvil` instance is launched.
|
||||||
|
#[must_use]
|
||||||
|
pub fn timeout<T: Into<u64>>(mut self, timeout: T) -> Self {
|
||||||
|
self.timeout = Some(timeout.into());
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
/// Consumes the builder and spawns `anvil` with stdout redirected
|
/// Consumes the builder and spawns `anvil` with stdout redirected
|
||||||
/// to /dev/null.
|
/// to /dev/null.
|
||||||
pub fn spawn(self) -> AnvilInstance {
|
pub fn spawn(self) -> AnvilInstance {
|
||||||
|
@ -251,7 +259,9 @@ impl Anvil {
|
||||||
let mut addresses = Vec::new();
|
let mut addresses = Vec::new();
|
||||||
let mut is_private_key = false;
|
let mut is_private_key = false;
|
||||||
loop {
|
loop {
|
||||||
if start + Duration::from_millis(ANVIL_STARTUP_TIMEOUT_MILLIS) <= Instant::now() {
|
if start + Duration::from_millis(self.timeout.unwrap_or(ANVIL_STARTUP_TIMEOUT_MILLIS)) <=
|
||||||
|
Instant::now()
|
||||||
|
{
|
||||||
panic!("Timed out waiting for anvil to start. Is anvil installed?")
|
panic!("Timed out waiting for anvil to start. Is anvil installed?")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue