You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
269 B

10 years ago
10 years ago
10 years ago
  1. package rpc
  2. import (
  3. "net/http"
  4. //. "github.com/tendermint/tendermint/block"
  5. )
  6. func BlockHandler(w http.ResponseWriter, r *http.Request) {
  7. //height, _ := GetParamUint64Safe(r, "height")
  8. //count, _ := GetParamUint64Safe(r, "count")
  9. ReturnJSON(API_OK, "hello")
  10. }