Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Warta <[email protected]>
  • Loading branch information
chipshort and webmaster128 authored Jun 5, 2023
1 parent ea6d82c commit ebec623
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ major releases of `cosmwasm`. Note that you can also view the
# ...
```

- If you want to use a fewture that os only available on CosmWasm 1.3+ chains,
- If you want to use a feature that is only available on CosmWasm 1.3+ chains,
use this feature:

```diff
-cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
+cosmwasm-std = { version = "1.1.0", features = ["stargate", "cosmwasm_1_3"] }
-cosmwasm-std = { version = "1.3.0", features = ["stargate"] }
+cosmwasm-std = { version = "1.3.0", features = ["stargate", "cosmwasm_1_3"] }
```

Please note that `cosmwasm_1_2` implies `cosmwasm_1_1`, and `cosmwasm_1_3`
Expand Down
2 changes: 1 addition & 1 deletion packages/std/src/query/bank.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl QueryResponseType for AllBalanceResponse {}
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
pub struct DenomMetadataResponse {
/// Always returns metadata for all token denoms on the base chain.
/// The metadata for the queried denom.
pub metadata: DenomMetadata,
}

Expand Down

0 comments on commit ebec623

Please sign in to comment.