Skip to content

Commit

Permalink
fix: increase transaction timeout to 600 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
mickvandijke committed Jan 9, 2025
1 parent 605a3eb commit d19d5e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evmlib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub mod utils;
pub mod wallet;

/// Timeout for transactions
const TX_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(60);
const TX_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(600);

static PUBLIC_ARBITRUM_ONE_HTTP_RPC_URL: LazyLock<reqwest::Url> = LazyLock::new(|| {
"https://arb1.arbitrum.io/rpc"
Expand Down

0 comments on commit d19d5e3

Please sign in to comment.