From fd83e203b405682cc56cccbac5b43dce33913a8e Mon Sep 17 00:00:00 2001 From: WillQ Date: Thu, 16 Feb 2023 02:54:58 +0800 Subject: [PATCH] feat: add debug for geth default api (#2140) --- ethers-core/src/utils/geth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-core/src/utils/geth.rs b/ethers-core/src/utils/geth.rs index 1e6dbe42..785552f7 100644 --- a/ethers-core/src/utils/geth.rs +++ b/ethers-core/src/utils/geth.rs @@ -21,7 +21,7 @@ const GETH_STARTUP_TIMEOUT_MILLIS: u64 = 10_000; const GETH_DIAL_LOOP_TIMEOUT: Duration = Duration::new(20, 0); /// The exposed APIs -const API: &str = "eth,net,web3,txpool,admin,personal,miner"; +const API: &str = "eth,net,web3,txpool,admin,personal,miner,debug"; /// The geth command const GETH: &str = "geth";