Rest server not response
I started the rest server with below options. ``` (base) greenblue@greenblue-ubuntu:~$ gaiacli rest-server --chain-id=pcoin-chain --laddr=tcp://localhost:1317 --node tcp://localhost:26657 --trust-node=true I[2020-04-20|14:50:10.430] Starting application REST service (chain-id: "pcoin-chain")... module=rest-server I[2020-04-20|14:50:10.430] Starting RPC HTTP server on 127.0.0.1:1317 module=rest-server ``` But the server does not respond. No error message just waitting forever. Ports ``` (base) greenblue@greenblue-ubuntu:~$ netstat -natp | grep 266 (Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.) tcp 0 0 127.0.0.1:26657 0.0.0.0:* LISTEN - tcp6 0 0 :::26656 :::* LISTEN - (base) greenblue@greenblue-ubuntu:~$ netstat -natp | grep 1317 (Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.) tcp 0 0 127.0.0.1:1317 0.0.0.0:* LISTEN 25279/gaiacli ``` Status…
Excerpt (1198 of 2273 characters). Read the whole post on the forum ↗
It’s not a valid endpoint that you are trying to access. Try http://127.0.0.1:1317/staking/validators instead. It should work 
I solved the problem. It was my proxy server. I’ve turned off the proxy server and works well.
