Implement a global concurrency limit on provider requests

This commit is contained in:
Omar Abdulla
2025-10-04 15:47:56 +03:00
parent fe7eaae984
commit 2bb9594857
17 changed files with 241 additions and 210 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ use revive_dt_common::types::*;
use revive_dt_compiler::{SolidityCompiler, revive_resolc::Resolc, solc::Solc};
use revive_dt_config::*;
use revive_dt_node::{
Node, geth::GethNode, lighthouse_geth::LighthouseGethNode, substrate::SubstrateNode,
Node, node_implementations::geth::GethNode,
node_implementations::lighthouse_geth::LighthouseGethNode,
node_implementations::substrate::SubstrateNode,
};
use revive_dt_node_interaction::EthereumNode;
use tracing::info;