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

refactor(ecocredit): update genesis import & export to use v1 api #977

Merged
merged 26 commits into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
86009b7
wip: migrate genesis
aleem1314 Apr 4, 2022
1f86fa4
fix: tests
aleem1314 Apr 8, 2022
a3ff33b
cleanup genesis sims
aleem1314 Apr 8, 2022
aa1b135
Merge branch 'master' into aleem/ecocredit-genesis-migration
aleem1314 Apr 8, 2022
2561ded
Update x/ecocredit/module/module_test.go
aleem1314 Apr 8, 2022
235d9b9
chore: disable ecocredit tests
aleem1314 Apr 8, 2022
ead088b
remove legacy genesis
aleem1314 Apr 8, 2022
c572105
Merge branch 'aleem/ecocredit-genesis-migration' of https://github.co…
aleem1314 Apr 8, 2022
6460cb1
wip: use memdb for genesis validation
aleem1314 Apr 9, 2022
840549d
wip: add tests
aleem1314 Apr 10, 2022
d0d46ea
migrate core sims to v1
aleem1314 Apr 10, 2022
e8e6ad9
update genesis tests
aleem1314 Apr 11, 2022
0b89b4d
chore: add todo for commented code
aleem1314 Apr 11, 2022
016f0c6
Merge branch 'master' into aleem/ecocredit-genesis-migration
aleem1314 Apr 11, 2022
44948ec
remove test
aleem1314 Apr 11, 2022
e31a6aa
Merge branch 'aleem/ecocredit-genesis-migration' of https://github.co…
aleem1314 Apr 11, 2022
eb63b2c
chore: cleanup
aleem1314 Apr 11, 2022
7fe26b6
Update x/ecocredit/core/genesis.go
aleem1314 Apr 12, 2022
90d0872
chore: review changes
aleem1314 Apr 12, 2022
dd2d7f0
Merge branch 'master' into aleem/ecocredit-genesis-migration
aleem1314 Apr 12, 2022
c6e0839
chore: add core state types validation
aleem1314 Apr 13, 2022
c3e3d17
Merge branch 'aleem/ecocredit-genesis-migration' of https://github.co…
aleem1314 Apr 13, 2022
a583f4e
Merge branch 'master' of https://github.com/regen-network/regen-ledge…
aleem1314 Apr 13, 2022
5180f2b
Update x/ecocredit/core/genesis.go
aleem1314 Apr 14, 2022
1c66a72
chore: review changes
aleem1314 Apr 14, 2022
5f50723
Merge branch 'master' into aleem/ecocredit-genesis-migration
ryanchristo Apr 15, 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
4 changes: 2 additions & 2 deletions x/ecocredit/client/testsuite/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ const (
var validMetadataBytes = []byte{0x1}

func RunCLITests(t *testing.T, cfg network.Config) {
// TODO: enable integrations test after ORM migration
// TODO: uncomment after CLI v1 integration https://github.com/regen-network/regen-ledger/issues/876
// suite.Run(t, NewIntegrationTestSuite(cfg))

// // setup another cfg for testing ecocredit enabled class creators list.
// setup another cfg for testing ecocredit enabled class creators list.
// genesisState := ecocredit.DefaultGenesisState()
// genesisState.Params.AllowlistEnabled = true
// bz, err := cfg.Codec.MarshalJSON(genesisState)
Expand Down
Loading