-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Changes from 4 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 07484e1
checkpoint
testinginprod 48b9733
more fixes
testinginprod 9bf545d
more fixes2
testinginprod ec74255
add more fixes
testinginprod d9eaa3c
apply fix
testinginprod 25b909e
fix e2e with gov changes
testinginprod 4769b4c
more tests adjustments
testinginprod 0a635cc
yet another fix
testinginprod a96c267
closer
testinginprod 3b59cad
yet another fix
testinginprod 09dfb53
we keep rocking
testinginprod fccfb9c
we keep rocking part2
testinginprod 33af7d9
another test fix
testinginprod 0365de7
another test fix2
testinginprod 1609e38
another test fix3
testinginprod 3a558ae
remove redundant test
testinginprod 42fb249
change textual e2e to match latest updates in API
testinginprod 2dc646f
another one bites the dust
testinginprod fb32826
tmp commit
testinginprod 3a8e81e
another galaxy brain fix
testinginprod 093748a
fix decoding fuzz testing
testinginprod 9f1512f
fix
testinginprod 7ef2dec
fix slashing test
testinginprod 73c7664
gg
testinginprod 5851942
Merge branch 'main' into tip/auth/use_x_tx
testinginprod 7ff9dd9
thanks @julienrbrt
testinginprod 77d7111
lint
testinginprod e0fda8e
fix service_test.go
testinginprod 98a42e8
revert lint
testinginprod a298c74
lint happy again
testinginprod 2227e7d
fix conflicts
facundomedica 6bbcdcd
remove MergedProtoRegistry (#19484)
kocubinski 9fed787
fix
facundomedica e879571
Merge branch 'main' into tip/auth/use_x_tx
facundomedica 944ed5b
fix
facundomedica d725e5f
Merge branch 'tip/auth/use_x_tx' of https://github.com/cosmos/cosmos-…
facundomedica fb47eac
go mod tidy all
facundomedica 4c0d6c7
more fixes
facundomedica fe91f3a
skip aux test
facundomedica File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
replace
directives in thisgo.mod
file significantly alter the source locations for variouscosmossdk.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.