From 9f3f3c87f15eca6ac43eab8cb723d3809328d923 Mon Sep 17 00:00:00 2001 From: beer-1 Date: Fri, 16 Aug 2024 15:41:57 +0900 Subject: [PATCH] add default namespaces --- jsonrpc/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonrpc/config/config.go b/jsonrpc/config/config.go index 6693d4c..9d36032 100644 --- a/jsonrpc/config/config.go +++ b/jsonrpc/config/config.go @@ -41,7 +41,7 @@ const ( var ( // DefaultAPIs defines the default list of JSON-RPC namespaces that should be enabled. - DefaultAPIs = []string{"eth" /*"txpool", "personal", "net", "debug", "web3"*/} + DefaultAPIs = []string{"eth", "net", "txpool", "web3", "personal", "debug", "miner", "cosmos"} ) const (