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(x/distribution): add autocli config query #16218

Merged
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
27258db
feat(distribution): add autocli config
JeancarloBarrios May 16, 2023
680a2f3
feat(distribution): add query autocli
JeancarloBarrios May 18, 2023
a378070
feat(distribution): add query autocli
JeancarloBarrios May 18, 2023
4ad2ea4
revert removal
JeancarloBarrios May 18, 2023
3f3466b
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios May 24, 2023
3d79bdb
remove tests
JeancarloBarrios May 25, 2023
77282da
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios May 25, 2023
58ee663
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios May 29, 2023
90a8cad
nit
JeancarloBarrios May 29, 2023
7af8943
add address codec
JeancarloBarrios Jun 6, 2023
0d9f4d5
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 7, 2023
b0a152f
generate example address
JeancarloBarrios Jun 8, 2023
28a3844
generate example address
JeancarloBarrios Jun 8, 2023
897a9d4
fix
JeancarloBarrios Jun 8, 2023
f424933
fix
JeancarloBarrios Jun 8, 2023
0b6c7a5
fix
JeancarloBarrios Jun 8, 2023
aa30643
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 8, 2023
20d6d55
add chagelog
JeancarloBarrios Jun 8, 2023
5839141
add chagelog
JeancarloBarrios Jun 8, 2023
5386c55
temproal
JeancarloBarrios Jun 8, 2023
a889886
fix changelog
JeancarloBarrios Jun 14, 2023
eb25eab
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 14, 2023
5ced874
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 15, 2023
d3768d6
dep
JeancarloBarrios Jun 15, 2023
58c6252
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 15, 2023
bf082f1
dep
JeancarloBarrios Jun 15, 2023
cfb152e
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 15, 2023
1fa5697
dep
JeancarloBarrios Jun 15, 2023
b16e1d7
typo
JeancarloBarrios Jun 15, 2023
9863381
typo
JeancarloBarrios Jun 15, 2023
0c11816
Merge branch 'main' into JeancarloBarrios/distirbuition-autocli-confi…
JeancarloBarrios Jun 15, 2023
a00be63
remove val address
JeancarloBarrios Jun 15, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
# Changelog

## [Unreleased]
* (x/distriubtion) [#16218](https://github.com/cosmos/cosmos-sdk/pull/16218) Add Autocli config to distribution module.
Copy link
Member

Choose a reason for hiding this comment

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

nit, can it be under the improvement category?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ok ok!!


### Improvements

Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/distribution/grpc_query_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package distribution
import (
"fmt"

"cosmossdk.io/simapp"
"github.com/cosmos/gogoproto/proto"
"github.com/stretchr/testify/suite"

"cosmossdk.io/simapp"

sdktestutil "github.com/cosmos/cosmos-sdk/testutil"
"github.com/cosmos/cosmos-sdk/testutil/network"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
Loading