Hi!
I have a Tendermint 0.33.9-1baf670c running on my machine. I can contact it through GET, as follows:
curl --request GET localhost:26657/genesis
and I see the resulting JSON on the screen, correctly. However, the same call, in POST version, prints the empty string (and no error):
curl -H “Content-Type: application/json; utf-8” -H “Accept: application/json” --request POST --data ‘{“method”:“genesis”}’ localhost:26657
What am I doing wrong?
Thanks!