tendermint/rpc/blocks.go

14 lines
269 B
Go
Raw Normal View History

2014-11-30 18:31:44 -08:00
package rpc
import (
"net/http"
2014-12-17 01:37:13 -08:00
//. "github.com/tendermint/tendermint/block"
2014-11-30 18:31:44 -08:00
)
func BlockHandler(w http.ResponseWriter, r *http.Request) {
//height, _ := GetParamUint64Safe(r, "height")
//count, _ := GetParamUint64Safe(r, "count")
ReturnJSON(API_OK, "hello")
}