Skip to content

Commit

Permalink
feat: update deps for signer
Browse files Browse the repository at this point in the history
  • Loading branch information
boodyvo committed Aug 23, 2024
1 parent b7c277f commit 358038c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion signing/testing/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
import (
"context"
"fmt"
"google.golang.org/grpc/credentials/insecure"
"log"
"os"

Expand Down Expand Up @@ -31,7 +32,7 @@ func main() {
app.SetSDKConfig()
encodingConfig := app.MakeEncodingConfig()

conn, err := grpc.Dial(grpcUrl, grpc.WithInsecure())
conn, err := grpc.Dial(grpcUrl, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 358038c

Please sign in to comment.