feat(store/v2): full iavl/v2 support (#23131)

Co-authored-by: marbar3778 <marbar3778@yahoo.com>
Co-authored-by: auricom <27022259+auricom@users.noreply.github.com>
This commit is contained in:
Matt Kocubinski
2025-01-03 10:41:47 +00:00
committed by GitHub
co-authored by marbar3778 auricom
parent 3d544c1ef3
commit 4f537d5231
31 changed files with 417 additions and 141 deletions
+2 -2
View File
@@ -171,7 +171,7 @@ func NewLoadTestCmd(params *modulev1.GeneratorParams) *cobra.Command {
successCount++
}
if pause > 0 {
time.Sleep(time.Duration(pause) * time.Millisecond)
time.Sleep(time.Duration(pause) * time.Microsecond)
}
}
},
@@ -180,7 +180,7 @@ func NewLoadTestCmd(params *modulev1.GeneratorParams) *cobra.Command {
flags.AddTxFlagsToCmd(cmd)
cmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "print the response")
cmd.Flags().Uint64Var(&numOps, "ops", 1, "number of operations per transaction")
cmd.Flags().Int64Var(&pause, "pause", 0, "pause between transactions in milliseconds")
cmd.Flags().Int64Var(&pause, "pause", 0, "pause between transactions in microseconds")
return cmd
}