Merge pull request #1415 from CosmWasm/fix_cli_bug

Fix cli update-instantiate-config command
This commit is contained in:
Alexander Peters
2023-05-24 15:59:25 +02:00
committed by GitHub

View File

@@ -142,7 +142,7 @@ func UpdateInstantiateConfigCmd() *cobra.Command {
}
msg := types.MsgUpdateInstantiateConfig{
Sender: string(clientCtx.GetFromAddress()),
Sender: clientCtx.GetFromAddress().String(),
CodeID: codeID,
NewInstantiatePermission: perm,
}