Skip to content

Commit

Permalink
fix: correct bank balance query url in faucet openapi (ignite#3497)
Browse files Browse the repository at this point in the history
Signed-off-by: bjwswang <bjwswang@gmail.com>
  • Loading branch information
bjwswang committed May 10, 2023
1 parent 4551543 commit 5956021
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

### Fixes

- [#3497](https://github.com/ignite/cli/pull/3497) Use corret bank balance query url in faucet openapi
- [#3481](https://github.com/ignite/cli/pull/3481) Use correct checksum format in release checksum file
- [#3470](https://github.com/ignite/cli/pull/3470) Prevent overriding minimum-gas-prices with default value

Expand Down
4 changes: 2 additions & 2 deletions ignite/pkg/cosmosfaucet/openapi/openapi.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ paths:
parameters:
- in: "body"
name: "body"
description: "Send coins request object\n\nAfter making a sample execution by the 'Try it out' button in the right corner, visit the following link to see the difference in sample account's balance: {{ .APIAddress }}/bank/balances/cosmos1uzv4v9g9xln2qx2vtqhz99yxum33calja5vruz"
description: "Send coins request object\n\nAfter making a sample execution by the 'Try it out' button in the right corner, visit the following link to see the difference in sample account's balance: {{ .APIAddress }}/cosmos/bank/v1beta1/balances/cosmos1uzv4v9g9xln2qx2vtqhz99yxum33calja5vruz"
required: true
schema:
$ref: "#/definitions/SendRequest"
Expand All @@ -29,7 +29,7 @@ paths:
"500":
description: "Internal error"
"200":
description: "All coins are successfully sent\n\nAfter making a sample execution, visit the following link to see the difference in sample account's balance: {{ .APIAddress }}/bank/balances/cosmos1uzv4v9g9xln2qx2vtqhz99yxum33calja5vruz"
description: "All coins are successfully sent\n\nAfter making a sample execution, visit the following link to see the difference in sample account's balance: {{ .APIAddress }}/cosmos/bank/v1beta1/balances/cosmos1uzv4v9g9xln2qx2vtqhz99yxum33calja5vruz"
schema:
$ref: "#/definitions/SendResponse"

Expand Down

0 comments on commit 5956021

Please sign in to comment.