feat: add debug for geth default api (#2140)

This commit is contained in:
WillQ 2023-02-16 02:54:58 +08:00 committed by GitHub
parent e1b6458eb6
commit fd83e203b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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";