refactor: use slices std (#19598)

This commit is contained in:
Julien Robert
2024-02-29 09:57:42 +00:00
committed by GitHub
parent 975ddc1d31
commit 1c9361ca4e
11 changed files with 10 additions and 16 deletions
+1 -1
View File
@@ -4,13 +4,13 @@ import (
"encoding/json"
"fmt"
"reflect"
"slices"
"strings"
abci "github.com/cometbft/cometbft/abci/types"
"github.com/cosmos/gogoproto/jsonpb"
proto "github.com/cosmos/gogoproto/proto"
"golang.org/x/exp/maps"
"golang.org/x/exp/slices"
"github.com/cosmos/cosmos-sdk/codec"
)