upgrade to cosmos sdk v0.45 (#782)
* update go.mod
* fix order adding in app.go
* update hardcoded gas amounts
* Update app/app.go
* Update go.mod
Co-authored-by:
Dev Ojha <ValarDragon@users.noreply.github.com>
Showing
+43 -29
... | ... | @@ -5,7 +5,7 @@ go 1.17 |
require ( | ||
github.com/cosmos/cosmos-sdk v0.44.5 | ||
github.com/cosmos/go-bip39 v1.0.0 | ||
github.com/cosmos/iavl v0.17.2 | ||
github.com/cosmos/iavl v0.17.3 | ||
github.com/cosmos/ibc-go/v2 v2.0.0 | ||
github.com/gogo/protobuf v1.3.3 | ||
github.com/golang/protobuf v1.5.2 | ||
... | ... | @@ -39,8 +39,9 @@ require ( |
github.com/btcsuite/btcd v0.22.0-beta // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/coinbase/rosetta-sdk-go v0.6.10 // indirect | ||
github.com/coinbase/rosetta-sdk-go v0.7.0 // indirect | ||
github.com/confio/ics23/go v0.6.6 // indirect | ||
github.com/cosmos/btcutil v1.0.4 // indirect | ||
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect | ||
github.com/cosmos/ledger-go v0.9.2 // indirect | ||
github.com/danieljoos/wincred v1.0.2 // indirect | ||
... | ... | @@ -51,7 +52,6 @@ require ( |
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b // indirect | ||
github.com/enigmampc/btcutil v1.0.3-0.20200723161021-e2fb6adb2a25 // indirect | ||
github.com/felixge/httpsnoop v1.0.1 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-kit/kit v0.12.0 // indirect | ||
... | ... | @@ -120,8 +120,8 @@ require ( |
) | ||
replace ( | ||
// Our cosmos-sdk branch is: https://github.com/osmosis-labs/cosmos-sdk v0.44.3x-osmo-v5 | ||
github.com/cosmos/cosmos-sdk => github.com/osmosis-labs/cosmos-sdk v0.43.0-rc3.0.20220120015748-5df6adc097e8 | ||
// Our cosmos-sdk branch is: https://github.com/osmosis-labs/cosmos-sdk v0.45.0x-osmo-v7 | ||
github.com/cosmos/cosmos-sdk => github.com/osmosis-labs/cosmos-sdk v0.43.0-rc3.0.20220124045025-f4329814320d | ||
github.com/cosmos/ibc-go/v2 => github.com/osmosis-labs/ibc-go/v2 v2.0.2-osmo | ||
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 | ||
github.com/tecbot/gorocksdb => github.com/cosmos/gorocksdb v1.1.1 | ||
... | ... |
Please register or sign in to comment