-
Notifications
You must be signed in to change notification settings - Fork 4.1k
test(integration): port x/bank tests to server/v2 app #21912
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
Changes from 81 commits
da84451
eb347f6
2e9835c
b0cc5a5
14686ba
74358ca
ba91038
c4d0834
a080b2e
f09a8fe
ce51d9e
441423d
7e508c3
99c2a5c
a6e0c1f
e0c9e3d
8c4d79d
2d28d64
0e71ce3
3ad2a6e
d8a6ed7
de2a723
a47a286
c8ea058
2410c04
8d3698f
57040e2
995974c
69598d4
29b0ebe
a977338
30814ac
ef50b4f
177a0da
25f0244
45ff83a
16a0e99
8d1014e
9fe1020
80db042
57ec239
c20649d
ea930ac
c508350
8b9b66c
e0eb0ef
b6d6f75
d8fc366
00dd82a
74e8eed
710a1aa
ae35d88
eb1f49e
e37ff14
7e6b4db
d3e474c
8292c98
de81b74
706a591
9e42ec8
db41984
869a492
a8f7d8e
6a9e803
9cf71f4
47136de
52c502a
8d34c75
55e77a5
4c9de97
2e26e66
1d58116
862b351
17c1bf2
002b46a
89c5fc7
9c15e0a
6c41076
bd69e6d
859b6ac
83333fa
c768f5c
7c32d2f
7e5f838
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,6 +33,9 @@ require ( | |
|
|
||
| require ( | ||
| cosmossdk.io/core/testing v0.0.0-20240923163230-04da382a9f29 | ||
| cosmossdk.io/runtime/v2 v2.0.0-20240911143651-72620a577660 | ||
| cosmossdk.io/server/v2/stf v0.0.0-00010101000000-000000000000 | ||
| cosmossdk.io/store/v2 v2.0.0-00010101000000-000000000000 | ||
| cosmossdk.io/x/accounts v0.0.0-20240913065641-0064ccbce64e | ||
| cosmossdk.io/x/accounts/defaults/base v0.0.0-00010101000000-000000000000 | ||
| cosmossdk.io/x/accounts/defaults/lockup v0.0.0-20240417181816-5e7aae0db1f5 | ||
|
|
@@ -52,6 +55,7 @@ require ( | |
| github.com/jhump/protoreflect v1.17.0 | ||
| github.com/rs/zerolog v1.33.0 | ||
| github.com/spf13/viper v1.19.0 | ||
| gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b | ||
| ) | ||
|
|
||
| require ( | ||
|
|
@@ -65,7 +69,9 @@ require ( | |
| cloud.google.com/go/storage v1.43.0 // indirect | ||
| cosmossdk.io/client/v2 v2.0.0-20230630094428-02b760776860 // indirect | ||
| cosmossdk.io/errors v1.0.1 // indirect | ||
| cosmossdk.io/errors/v2 v2.0.0-20240731132947-df72853b3ca5 // indirect | ||
| cosmossdk.io/schema v0.3.1-0.20241010135032-192601639cac // indirect | ||
| cosmossdk.io/server/v2/appmanager v0.0.0-00010101000000-000000000000 // indirect | ||
| cosmossdk.io/x/circuit v0.0.0-20230613133644-0a778132a60f // indirect | ||
| cosmossdk.io/x/epochs v0.0.0-20240522060652-a1ae4c3e0337 // indirect | ||
| filippo.io/edwards25519 v1.1.0 // indirect | ||
|
|
@@ -162,6 +168,7 @@ require ( | |
| github.com/manifoldco/promptui v0.9.0 // indirect | ||
| github.com/mattn/go-colorable v0.1.13 // indirect | ||
| github.com/mattn/go-isatty v0.0.20 // indirect | ||
| github.com/mattn/go-sqlite3 v1.14.22 // indirect | ||
| github.com/minio/highwayhash v1.0.3 // indirect | ||
| github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
| github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
|
|
@@ -196,7 +203,6 @@ require ( | |
| github.com/ulikunitz/xz v0.5.12 // indirect | ||
| github.com/zondax/hid v0.9.2 // indirect | ||
| github.com/zondax/ledger-go v0.14.3 // indirect | ||
| gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b // indirect | ||
| gitlab.com/yawning/tuplehash v0.0.0-20230713102510-df83abbf9a02 // indirect | ||
| go.etcd.io/bbolt v1.4.0-alpha.0.0.20240404170359-43604f3112c5 // indirect | ||
| go.opencensus.io v0.24.0 // indirect | ||
|
|
@@ -237,7 +243,11 @@ replace ( | |
| cosmossdk.io/api => ../api | ||
| cosmossdk.io/client/v2 => ../client/v2 | ||
| cosmossdk.io/collections => ../collections | ||
| cosmossdk.io/runtime/v2 => ../runtime/v2 | ||
| cosmossdk.io/server/v2/appmanager => ../server/v2/appmanager | ||
| cosmossdk.io/server/v2/stf => ../server/v2/stf | ||
| cosmossdk.io/store => ../store | ||
| cosmossdk.io/store/v2 => ../store/v2 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. store/v2 changes look no relation to this PR
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. previously store/v2 was not used in tests/integration. now it is. I'm not sure which version of store/v2 to use for tests, so I'm pinning to latest for now. That's probably fair for integration tests? |
||
| cosmossdk.io/x/accounts => ../x/accounts | ||
| cosmossdk.io/x/accounts/defaults/base => ../x/accounts/defaults/base | ||
| cosmossdk.io/x/accounts/defaults/lockup => ../x/accounts/defaults/lockup | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.