Skip to content

Commit

Permalink
Merge pull request #81 from hallazzang/72-bump-sdk-to-0.44.3
Browse files Browse the repository at this point in the history
build: bump cosmos-sdk version to 0.44.3
  • Loading branch information
dongsam authored Nov 11, 2021
2 parents d3a9aab + a4d2e9d commit 32470ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 276 deletions.
7 changes: 5 additions & 2 deletions cmd/budgetd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ func NewRootCmd() (*cobra.Command, budgetparams.EncodingConfig) {
cmd.SetOut(cmd.OutOrStdout())
cmd.SetErr(cmd.ErrOrStderr())

initClientCtx = client.ReadHomeFlag(initClientCtx, cmd)
initClientCtx, err := client.ReadPersistentCommandFlags(initClientCtx, cmd.Flags())
if err != nil {
return err
}

initClientCtx, err := config.ReadFromClientConfig(initClientCtx)
initClientCtx, err = config.ReadFromClientConfig(initClientCtx)
if err != nil {
return err
}
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/tendermint/budget
go 1.16

require (
github.com/cosmos/cosmos-sdk v0.44.3
github.com/armon/go-metrics v0.3.9
github.com/cosmos/cosmos-sdk v0.44.2
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
github.com/gorilla/mux v1.8.0
Expand All @@ -15,7 +15,7 @@ require (
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/tendermint/tendermint v0.34.13
github.com/tendermint/tendermint v0.34.14
github.com/tendermint/tm-db v0.6.4
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
google.golang.org/grpc v1.40.0
Expand Down
Loading

0 comments on commit 32470ca

Please sign in to comment.