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

chore: Merge in upstream v0.46.x #350

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
60122a2
build(deps): bump cometbft to v0.34.29 (#16553)
julienrbrt Jun 14, 2023
f34e99d
fix(x/auth): ensure nil .BaseAccounts are reported in ModuleAccount.V…
mergify[bot] Jun 15, 2023
56df2b2
fix: snapshotter's failure is not propogated (backport #16588) (#16604)
mergify[bot] Jun 19, 2023
a763135
feat: add custom max gas for block for sim config (backport #16656) (…
mergify[bot] Jun 28, 2023
b39cdb2
fix: accaddr cachefix (backport #15433) (#16823)
mergify[bot] Jul 5, 2023
7458047
fix(cli): improve `prune` command ux (backport #16856) (#16876)
mergify[bot] Jul 7, 2023
38ea282
fix: query tx events with `>=` and `<=` operators (#16994)
rootulp Jul 14, 2023
ffe7a5e
docs: change bank multi-send command description (backport #16950) (#…
mergify[bot] Jul 17, 2023
2a48f6d
chore: prepare v0.46.14 (#16879)
julienrbrt Jul 17, 2023
16d5269
refactor: add MigrateHandler to allow reuse migrate genesis related f…
mergify[bot] Aug 7, 2023
5372570
fix: resolve migration map in MigrateHandler (#17301) (#17302)
mmsqe Aug 7, 2023
dd028ed
feat(x/gov): Emit VoterAddr (backport #17354) (#17357)
mergify[bot] Aug 11, 2023
6f486fd
feat(x/gov): add MsgSubmitProposal SetMsgs method (backport #17387) (…
mergify[bot] Aug 15, 2023
f83dca0
fix: use correct config key for db_backend (backport #17406) (#17412)
mergify[bot] Aug 16, 2023
d6d9298
chore: prepare v0.46.15 (#17408)
julienrbrt Aug 21, 2023
22c2836
fix(x/authz): GetAuthorizations (backport #17334) (#17527)
mergify[bot] Aug 24, 2023
7aec30d
docs: update x/group create-proposal to submit-proposal (backport #17…
mergify[bot] Aug 25, 2023
f1dfe60
fix: typo in comment (backport #17635) (#17638)
mergify[bot] Sep 6, 2023
f2841d7
build(deps): bump cosmos/ledger-cosmos-go to v0.12.3 in v0.46 (backpo…
mergify[bot] Oct 13, 2023
466020c
Merge remote-tracking branch 'cosmos/release/v0.46.x'
faddat Oct 15, 2023
90f25b3
update errors and math
faddat Oct 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
Prev Previous commit
Next Next commit
docs: change bank multi-send command description (backport cosmos#16950
  • Loading branch information
mergify[bot] authored Jul 17, 2023
commit ffe7a5ed983364a05f752bb7ddac713979e888a4
12 changes: 7 additions & 5 deletions x/bank/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/client/tx"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/version"
"github.com/cosmos/cosmos-sdk/x/bank/types"
)

Expand Down Expand Up @@ -74,15 +75,16 @@ When using '--dry-run' a key name cannot be used, only a bech32 address.
// For a better UX this command is limited to send funds from one account to two or more accounts.
func NewMultiSendTxCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "multi-send [from_key_or_address] [to_address_1, to_address_2, ...] [amount]",
Use: "multi-send [from_key_or_address] [to_address_1 to_address_2 ...] [amount]",
Short: "Send funds from one account to two or more accounts.",
Long: `Send funds from one account to two or more accounts.
By default, sends the [amount] to each address of the list.
Using the '--split' flag, the [amount] is split equally between the addresses.
Note, the '--from' flag is ignored as it is implied from [from_key_or_address].
When using '--dry-run' a key name cannot be used, only a bech32 address.
`,
Args: cobra.MinimumNArgs(4),
Note, the '--from' flag is ignored as it is implied from [from_key_or_address] and
separate addresses with space.
When using '--dry-run' a key name cannot be used, only a bech32 address.`,
Example: fmt.Sprintf("%s tx bank multi-send cosmos1... cosmos1... cosmos1... cosmos1... 10stake", version.AppName),
Args: cobra.MinimumNArgs(4),
RunE: func(cmd *cobra.Command, args []string) error {
cmd.Flags().Set(flags.FlagFrom, args[0])
clientCtx, err := client.GetClientTxContext(cmd)
Expand Down