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.

14 lines
309 B

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