Remove admin,debug,db api from exposed modules

This commit is contained in:
Dmitry Shulyak 2018-04-09 11:04:47 +03:00 committed by Dmitry Shulyak
parent df35ad6dbe
commit ced8335600
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ const (
ListenAddr = ":0"
// APIModules is a list of modules to expose via any type of RPC (HTTP, IPC, in-proc)
APIModules = "db,eth,net,web3,shh,personal,admin,debug"
APIModules = "eth,net,web3,shh,personal"
// WSHost is a host interface for the websocket RPC server
WSHost = "localhost"