Skip to content

Commit cee9c6d

Browse files
fedekunzecrodriguezvega
authored andcommitted
deps: bump cosmos-sdk v0.44.3 (#503)
* deps: bump cosmos-sdk * update changelog
1 parent 78dd063 commit cee9c6d

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
3838

3939
### Dependencies
4040

41-
* [\#485](https://github.com/cosmos/ibc-go/pull/485) Bump SDK version to v0.44.2
41+
* [\#503](https://github.com/cosmos/ibc-go/pull/503) Bump SDK version to v0.44.3
4242
* [\#455](https://github.com/cosmos/ibc-go/pull/455) Bump SDK version to v0.44.1
4343

4444
### API Breaking

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alp
77
require (
88
github.com/armon/go-metrics v0.3.9
99
github.com/confio/ics23/go v0.6.6
10-
github.com/cosmos/cosmos-sdk v0.44.2
10+
github.com/cosmos/cosmos-sdk v0.44.3
1111
github.com/gogo/protobuf v1.3.3
1212
github.com/golang/protobuf v1.5.2
1313
github.com/gorilla/mux v1.8.0

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,8 @@ github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfc
216216
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
217217
github.com/cosmos/cosmos-sdk v0.44.2 h1:EWoj9h9Q9t7uqS3LyqzZWWwnSEodUJlYDMloDoPBD3Y=
218218
github.com/cosmos/cosmos-sdk v0.44.2/go.mod h1:fwQJdw+aECatpTvQTo1tSfHEsxACdZYU80QCZUPnHr4=
219+
github.com/cosmos/cosmos-sdk v0.44.3 h1:F71n1jCqPi4F0wXg8AU4AUdUF8llw0x3D3o6aLt/j2A=
220+
github.com/cosmos/cosmos-sdk v0.44.3/go.mod h1:bA3+VenaR/l/vDiYzaiwbWvRPWHMBX2jG0ygiFtiBp0=
219221
github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y=
220222
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
221223
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=

testing/simapp/simd/cmd/root.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,12 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
5656
cmd.SetOut(cmd.OutOrStdout())
5757
cmd.SetErr(cmd.ErrOrStderr())
5858

59-
initClientCtx = client.ReadHomeFlag(initClientCtx, cmd)
59+
initClientCtx, err := client.ReadPersistentCommandFlags(initClientCtx, cmd.Flags())
60+
if err != nil {
61+
return err
62+
}
6063

61-
initClientCtx, err := config.ReadFromClientConfig(initClientCtx)
64+
initClientCtx, err = config.ReadFromClientConfig(initClientCtx)
6265
if err != nil {
6366
return err
6467
}

0 commit comments

Comments
 (0)