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(auth): refactor auth/tx to use x/tx #19224

Merged
merged 40 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
d2b76b9
move x/auth/tx to use x/tx
testinginprod Jan 24, 2024
07484e1
checkpoint
testinginprod Jan 24, 2024
48b9733
more fixes
testinginprod Jan 24, 2024
9bf545d
more fixes2
testinginprod Jan 24, 2024
ec74255
add more fixes
testinginprod Jan 24, 2024
d9eaa3c
apply fix
testinginprod Jan 24, 2024
25b909e
fix e2e with gov changes
testinginprod Jan 24, 2024
4769b4c
more tests adjustments
testinginprod Jan 24, 2024
0a635cc
yet another fix
testinginprod Jan 24, 2024
a96c267
closer
testinginprod Jan 24, 2024
3b59cad
yet another fix
testinginprod Jan 24, 2024
09dfb53
we keep rocking
testinginprod Jan 24, 2024
fccfb9c
we keep rocking part2
testinginprod Jan 24, 2024
33af7d9
another test fix
testinginprod Jan 24, 2024
0365de7
another test fix2
testinginprod Jan 24, 2024
1609e38
another test fix3
testinginprod Jan 24, 2024
3a558ae
remove redundant test
testinginprod Jan 24, 2024
42fb249
change textual e2e to match latest updates in API
testinginprod Jan 24, 2024
2dc646f
another one bites the dust
testinginprod Jan 24, 2024
fb32826
tmp commit
testinginprod Jan 25, 2024
3a8e81e
another galaxy brain fix
testinginprod Jan 25, 2024
093748a
fix decoding fuzz testing
testinginprod Jan 25, 2024
9f1512f
fix
testinginprod Jan 25, 2024
7ef2dec
fix slashing test
testinginprod Jan 25, 2024
73c7664
gg
testinginprod Jan 25, 2024
5851942
Merge branch 'main' into tip/auth/use_x_tx
testinginprod Jan 25, 2024
7ff9dd9
thanks @julienrbrt
testinginprod Jan 25, 2024
77d7111
lint
testinginprod Jan 25, 2024
e0fda8e
fix service_test.go
testinginprod Jan 25, 2024
98a42e8
revert lint
testinginprod Jan 25, 2024
a298c74
lint happy again
testinginprod Jan 25, 2024
2227e7d
fix conflicts
facundomedica Feb 14, 2024
6bbcdcd
remove MergedProtoRegistry (#19484)
kocubinski Feb 20, 2024
9fed787
fix
facundomedica Feb 20, 2024
e879571
Merge branch 'main' into tip/auth/use_x_tx
facundomedica Feb 20, 2024
944ed5b
fix
facundomedica Feb 20, 2024
d725e5f
Merge branch 'tip/auth/use_x_tx' of https://github.com/cosmos/cosmos-…
facundomedica Feb 20, 2024
fb47eac
go mod tidy all
facundomedica Feb 20, 2024
4c0d6c7
more fixes
facundomedica Feb 20, 2024
fe91f3a
skip aux test
facundomedica Feb 20, 2024
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
2 changes: 2 additions & 0 deletions x/auth/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,13 @@ replace github.com/cosmos/cosmos-sdk => ../../.

// TODO remove post spinning out all modules
replace (
cosmossdk.io/api => ../../api
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The replace directives in this go.mod file significantly alter the source locations for various cosmossdk.io modules, pointing them to local paths within the project. This approach is beneficial for local development or when making coordinated changes across multiple modules. However, it's essential to verify that these local paths (../../api, ../../core, ../../depinject, ../accounts, ../bank, ../staking, ../tx) accurately reflect the project's directory structure and that these changes are aligned with the project's overall dependency management strategy. If these directives are intended for temporary or development-specific purposes, documenting their intended use can help maintain clarity and prevent potential issues in dependency resolution for other developers or in production environments.

cosmossdk.io/depinject => ../../depinject
cosmossdk.io/x/bank => ../bank
cosmossdk.io/x/distribution => ../distribution
cosmossdk.io/x/mint => ../mint
cosmossdk.io/x/protocolpool => ../protocolpool
cosmossdk.io/x/slashing => ../slashing
cosmossdk.io/x/staking => ../staking
cosmossdk.io/x/tx => ../tx
)
130 changes: 0 additions & 130 deletions x/auth/tx/adapter.go

This file was deleted.

Loading
Loading