Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(app)!: cosmos SDK v0.46 upgrade #1244

Merged
merged 38 commits into from
Aug 3, 2022
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4b3f44e
wip: remove cosmwasm
aleem1314 Jul 7, 2022
e3699aa
wip
aleem1314 Jul 8, 2022
b7a0bb9
refactor: remove experimental config
aleem1314 Jul 12, 2022
848b08d
refactor: fix imports
aleem1314 Jul 12, 2022
f3b165e
wip: migrating regen app
aleem1314 Jul 12, 2022
db76e51
wip: fixing tests
aleem1314 Jul 12, 2022
ba2bf1c
fix: fix imports
aleem1314 Jul 13, 2022
a1f2c5d
Merge branch 'master' of https://github.com/regen-network/regen-ledge…
aleem1314 Jul 18, 2022
3b4a5df
fix: resolve build errors
aleem1314 Jul 18, 2022
dc2c5cb
chore: remove ecocredit migrations
aleem1314 Jul 25, 2022
e30ddf8
Merge branch 'master' into aleem/857-sdk-v0.46
aleem1314 Jul 25, 2022
c600659
chore: cleanup
aleem1314 Jul 25, 2022
fef7838
refactor: bump sdk version to rc3
aleem1314 Jul 25, 2022
a137cf2
chore: update Makefile
aleem1314 Jul 25, 2022
e636cce
fix: fix simulations
aleem1314 Jul 26, 2022
487bc6d
Merge branch 'master' into aleem/857-sdk-v0.46
aleem1314 Jul 26, 2022
664278a
chore: run make tidy
aleem1314 Jul 26, 2022
7f09b82
fix: fix failing tests
aleem1314 Jul 26, 2022
ae8e514
wip: fix integration tests
aleem1314 Jul 26, 2022
14ab5bb
chore: fix failing test
aleem1314 Jul 27, 2022
bc0ccfa
chore: try fixing tests
aleem1314 Jul 27, 2022
c9de3cd
update network.go
aleem1314 Jul 27, 2022
d72698e
try fix cli tests
aleem1314 Jul 27, 2022
5bf06a3
chore: fix tests
aleem1314 Jul 28, 2022
44a1014
chore: fix failing tests
aleem1314 Jul 28, 2022
4083d80
chore: fix failing tests
aleem1314 Jul 28, 2022
2d7ac5e
Merge branch 'master' into aleem/857-sdk-v0.46
aleem1314 Jul 28, 2022
cca7587
chore: cleanup
aleem1314 Jul 29, 2022
1669f61
chore: update test.yml
aleem1314 Jul 29, 2022
a3bfed7
wip
aleem1314 Jul 29, 2022
2ebe49a
chore: update scripts
aleem1314 Jul 30, 2022
1482427
Update app/encoding.go
aleem1314 Aug 2, 2022
c1b86b4
Update app/app.go
aleem1314 Aug 2, 2022
be2e491
chore: review changes
aleem1314 Aug 2, 2022
fdcb556
chore: fix failing tests
aleem1314 Aug 2, 2022
1127910
chore: register data module types with authz
aleem1314 Aug 2, 2022
9aaa8d3
Update app/app.go
aleem1314 Aug 3, 2022
fafe166
Merge branch 'master' into aleem/857-sdk-v0.46
aleem1314 Aug 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update app/app.go
Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>
  • Loading branch information
aleem1314 and ryanchristo authored Aug 3, 2022
commit 9aaa8d30af9edec7257fd2a5db2154107e8f752c
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ func NewRegenApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest
// add keepers
app.AccountKeeper = authkeeper.NewAccountKeeper(
appCodec, keys[authtypes.StoreKey], app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms,
"uregen",
Bech32PrefixAccAddr,
)
app.BankKeeper = bankkeeper.NewBaseKeeper(
appCodec, keys[banktypes.StoreKey], app.AccountKeeper, app.GetSubspace(banktypes.ModuleName), app.ModuleAccountAddrs(),
Expand Down