diff --git a/client/rpc/block.go b/client/rpc/block.go index 36327a722a..693298bb86 100644 --- a/client/rpc/block.go +++ b/client/rpc/block.go @@ -16,6 +16,7 @@ const ( flagSelect = "select" ) +//BlockCommand returns the verified block data for a given heights func BlockCommand() *cobra.Command { cmd := &cobra.Command{ Use: "block [height]", diff --git a/client/rpc/validators.go b/client/rpc/validators.go index bfd8a9582b..e05d1c4348 100644 --- a/client/rpc/validators.go +++ b/client/rpc/validators.go @@ -14,6 +14,7 @@ import ( // TODO these next two functions feel kinda hacky based on their placement +//ValidatorCommand returns the validator set for a given height func ValidatorCommand() *cobra.Command { cmd := &cobra.Command{ Use: "validatorset [height]",