diff --git a/README.md b/README.md
index 999cdb633a418a14ef8cffb1748fd84b46883eaf..761bb8c1e320a9205f429406277dd26a3c81a719 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ it can run from a snapshot of a database for read-only calls.
 
 ```
 > make rpcdaemon
-> ./build/bin/rpcdaemon --chaindata ~/Library/TurboGeth/tg/chaindata --http.api=eth,debug
+> ./build/bin/rpcdaemon --chaindata ~/Library/TurboGeth/tg/chaindata --http.api=eth,debug,net
 ```
 **For remote DB**
 
diff --git a/cmd/rpcdaemon/Readme.md b/cmd/rpcdaemon/Readme.md
index 523fd7e407c87e84aea10ee9d6bc363e62d15a91..5487524010b487953e6dd5ac6aa2be1b5da8fb03 100644
--- a/cmd/rpcdaemon/Readme.md
+++ b/cmd/rpcdaemon/Readme.md
@@ -8,7 +8,7 @@ it can run from a snapshot of a database for read-only calls. [Docs](./cmd/rpcda
 
 ```
 > make rpcdaemon
-> ./build/bin/rpcdaemon --chaindata ~/Library/TurboGeth/tg/chaindata --http.api=eth,debug
+> ./build/bin/rpcdaemon --chaindata ~/Library/TurboGeth/tg/chaindata --http.api=eth,debug,net
 ```
 **For remote DB**
 
diff --git a/cmd/rpctest/Readme.md b/cmd/rpctest/Readme.md
index 03b0fd868460db4a4b0e5c46eb07658db6105604..ee647366c52d7e49d4aa648cbab23154424333d5 100644
--- a/cmd/rpctest/Readme.md
+++ b/cmd/rpctest/Readme.md
@@ -31,8 +31,8 @@ open plot.html
 ### Results from my Macbook:
 start rpcdaemon with turbo_geth: 
 ```
-GODEBUG=remotedb.debug=1 go run ./cmd/tg --private.api.addr localhost:9997   --rpcport 8545  --rpc --rpcapi eth,debug --nodiscover
-GODEBUG=remotedb.debug=1 go run ./cmd/rpcdaemon --rpcapi eth,debug --rpcport 9545 --private.api.addr 127.0.0.1:9997
+GODEBUG=remotedb.debug=1 go run ./cmd/tg --private.api.addr localhost:9997   --rpcport 8545  --rpc --rpcapi eth,debug,net --nodiscover
+GODEBUG=remotedb.debug=1 go run ./cmd/rpcdaemon --rpcapi eth,debug,net --rpcport 9545 --private.api.addr 127.0.0.1:9997
 ```
 
 On simple requests `eth_getBlockByNumber` RPC Daemon looks well:  
diff --git a/docker-compose.yml b/docker-compose.yml
index e4a5c2729ecc1b89572d322c971789db40f72134..6339678a46635092d18626da7a1ef9045f6b1a9d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -38,7 +38,7 @@ services:
 
   rpcdaemon:
     image: turbo-geth:latest
-    command: rpcdaemon --private.api.addr="turbo-geth:9090" --http.addr="0.0.0.0" --http.vhosts="*" --http.corsdomain="*" --http.api="eth,debug"
+    command: rpcdaemon --private.api.addr="turbo-geth:9090" --http.addr="0.0.0.0" --http.vhosts="*" --http.corsdomain="*" --http.api="eth,debug,net"
     ports:
       - 8545:8545