From d390bece5f504ebf09e8e910a1f36028698acf94 Mon Sep 17 00:00:00 2001 From: sukantoraymond Date: Thu, 30 Jun 2022 20:26:28 -0400 Subject: [PATCH] update dev wallet --- go.mod | 2 +- go.sum | 4 ++-- internal/tools/wallet.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 2c0c9f268..e1801c257 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/manifoldco/promptui v0.9.0 github.com/onflow/cadence v0.24.6 github.com/onflow/cadence/languageserver v0.24.0 - github.com/onflow/fcl-dev-wallet v0.4.4 + github.com/onflow/fcl-dev-wallet v0.4.5 github.com/onflow/flow-core-contracts/lib/go/templates v0.11.2-0.20220513155751-c4c1f8d59f83 github.com/onflow/flow-emulator v0.33.3 github.com/onflow/flow-go v0.26.12 diff --git a/go.sum b/go.sum index f513761e4..0047f577d 100644 --- a/go.sum +++ b/go.sum @@ -1396,8 +1396,8 @@ github.com/onflow/cadence/languageserver v0.23.5-0.20220608222314-31dcf01be513/g github.com/onflow/cadence/languageserver v0.24.0 h1:LufBiLHJt9LmWhVVpxaLHO/yRvVsPNpKKEdo6ykyB/U= github.com/onflow/cadence/languageserver v0.24.0/go.mod h1:5w1rJx0mvrto0EvWgZkbF4STuK2SggMyamwL1spTGlQ= github.com/onflow/fcl-dev-wallet v0.4.2/go.mod h1:xWVEyGZgdDt4/+PLSlpuqhtzobjnWy5giceIGoErPzs= -github.com/onflow/fcl-dev-wallet v0.4.4 h1:SI4fHETrjt/m76XPYYMEbU8GhLBuFL5VMZ1JzpoiIu0= -github.com/onflow/fcl-dev-wallet v0.4.4/go.mod h1:xWVEyGZgdDt4/+PLSlpuqhtzobjnWy5giceIGoErPzs= +github.com/onflow/fcl-dev-wallet v0.4.5 h1:aIQpjy1J6FeMgke92Vb9a33F/OPt0o4pHRT2FDgDgko= +github.com/onflow/fcl-dev-wallet v0.4.5/go.mod h1:xWVEyGZgdDt4/+PLSlpuqhtzobjnWy5giceIGoErPzs= github.com/onflow/flow v0.2.3-0.20220131193101-d4e2ca43a621/go.mod h1:lzyAYmbu1HfkZ9cfnL5/sjrrsnJiUU8fRL26CqLP7+c= github.com/onflow/flow v0.2.4/go.mod h1:lzyAYmbu1HfkZ9cfnL5/sjrrsnJiUU8fRL26CqLP7+c= github.com/onflow/flow v0.2.5/go.mod h1:lzyAYmbu1HfkZ9cfnL5/sjrrsnJiUU8fRL26CqLP7+c= diff --git a/internal/tools/wallet.go b/internal/tools/wallet.go index 4484904f2..eb414765f 100644 --- a/internal/tools/wallet.go +++ b/internal/tools/wallet.go @@ -33,7 +33,7 @@ import ( type FlagsWallet struct { Port uint `default:"8701" flag:"port" info:"Dev wallet port to listen on"` - Host string `default:"http://localhost:8080" flag:"emulator-host" info:"Host for access node connection"` + Host string `default:"http://localhost:8888" flag:"emulator-host" info:"Host for access node connection"` } var walletFlags = FlagsWallet{}