Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zale144 committed Jul 3, 2024
1 parent 582c624 commit 4797efa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,4 +298,4 @@ To setup push hooks, run the following command:

```sh
./scripts/setup_push_hooks.sh
```
```
7 changes: 4 additions & 3 deletions rollappd/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ import (
berpctypes "github.com/bcdevtools/block-explorer-rpc-cosmos/be_rpc/types"
"github.com/bcdevtools/wasm-block-explorer-rpc-cosmos/integrate_be_rpc"
wasmberpcbackend "github.com/bcdevtools/wasm-block-explorer-rpc-cosmos/integrate_be_rpc/backend/wasm"
rawberpcbackend "github.com/dymensionxyz/rollapp-wasm/ra_wasm_be_rpc/backend"
rawbeapi "github.com/dymensionxyz/rollapp-wasm/ra_wasm_be_rpc/namespaces/raw"
"github.com/ethereum/go-ethereum/rpc"
rpcclient "github.com/tendermint/tendermint/rpc/jsonrpc/client"

rawberpcbackend "github.com/dymensionxyz/rollapp-wasm/ra_wasm_be_rpc/backend"
rawbeapi "github.com/dymensionxyz/rollapp-wasm/ra_wasm_be_rpc/namespaces/raw"

"github.com/spf13/cobra"
"github.com/tendermint/tendermint/node"
"github.com/tendermint/tendermint/p2p"
Expand Down Expand Up @@ -371,7 +372,7 @@ func startInProcess(ctx *server.Context, clientCtx client.Context, nodeConfig *d
grpcAddress := fmt.Sprintf("127.0.0.1:%s", port)

// If grpc is enabled, configure grpc client for grpc gateway.
grpcClient, err := grpc.Dial(
grpcClient, err := grpc.NewClient(
grpcAddress,
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithDefaultCallOptions(
Expand Down

0 comments on commit 4797efa

Please sign in to comment.