test: use chaintestutil (#296)

* rename

* fix

* format

* workflow

* add basic test

* add targetss

* use commit

* workflow

* basic setup

* add keeper

* fix

* fix?

* update

* update

* update

* fix

* fix

* go work inti
This commit is contained in:
Alex Johnson
2023-12-13 09:01:14 -05:00
committed by GitHub
parent 7e279c5daa
commit b48073d3eb
13 changed files with 586 additions and 197 deletions
+2 -3
View File
@@ -44,7 +44,7 @@ func CmdQueryLane() *cobra.Command {
queryClient := types.NewQueryClient(clientCtx)
request := &types.QueryLaneRequest{}
response, err := queryClient.Lane(clientCtx.CmdContext, request)
response, err := queryClient.Lane(cmd.Context(), request)
if err != nil {
return err
}
@@ -71,9 +71,8 @@ func CmdQueryLanes() *cobra.Command {
}
queryClient := types.NewQueryClient(clientCtx)
request := &types.QueryLanesRequest{}
response, err := queryClient.Lanes(clientCtx.CmdContext, request)
response, err := queryClient.Lanes(cmd.Context(), request)
if err != nil {
return err
}