feat!: migrate x/group to store service (#19410)

This commit is contained in:
Facundo Medica
2024-02-13 13:51:26 +00:00
committed by GitHub
parent 869c96c403
commit c57dde2f34
39 changed files with 808 additions and 527 deletions
+2 -2
View File
@@ -689,7 +689,7 @@ func BenchmarkIntSize(b *testing.B) {
}
func BenchmarkIntOverflowCheckTime(b *testing.B) {
var ints = []*big.Int{}
ints := []*big.Int{}
for _, st := range sizeTests {
ii, _ := math.NewIntFromString(st.s)
@@ -699,7 +699,7 @@ func BenchmarkIntOverflowCheckTime(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
for j, _ := range sizeTests {
for j := range sizeTests {
got := math.NewIntFromBigIntMut(ints[j])
sink = got
}