Skip to content

Commit 9ee95c2

Browse files
committed
gofumpt
1 parent fd2a4a6 commit 9ee95c2

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

cmd/query/events.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ import (
55
"encoding/hex"
66
"encoding/json"
77
"fmt"
8+
"regexp"
9+
"strconv"
10+
"strings"
11+
812
"github.com/bcdevtools/devd/v2/cmd/utils"
913
acbitypes "github.com/cometbft/cometbft/abci/types"
1014
"github.com/spf13/cobra"
1115
"golang.org/x/exp/maps"
12-
"regexp"
13-
"strconv"
14-
"strings"
1516
)
1617

1718
func GetQueryTxEventsCommand() *cobra.Command {

cmd/utils/events_util.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ package utils
22

33
import (
44
"encoding/base64"
5-
acbitypes "github.com/cometbft/cometbft/abci/types"
65
"regexp"
6+
7+
acbitypes "github.com/cometbft/cometbft/abci/types"
78
)
89

910
func ResolveBase64Events(events []acbitypes.Event) []acbitypes.Event {

0 commit comments

Comments
 (0)