github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/internal/rpc/core/health.go (about) 1 package core 2 3 import ( 4 "context" 5 6 "github.com/ari-anchor/sei-tendermint/rpc/coretypes" 7 ) 8 9 // Health gets node health. Returns empty result (200 OK) on success, no 10 // response - in case of an error. 11 // More: https://docs.tendermint.com/master/rpc/#/Info/health 12 func (env *Environment) Health(ctx context.Context) (*coretypes.ResultHealth, error) { 13 return &coretypes.ResultHealth{}, nil 14 }