You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest minor version of cosmwasm is used when the contract is built.
According to the rust specifications, if cargo.toml is written like this, the minor version latest will be used.
Cargo.toml
cosmwasm-schema = "1.1.9"
Currently, v.15.* is the latest. So, this version cosmwasm-schema v1.5.2 is used.
Therefore, we need to consider and decide whether to use a fixed version of cosmwasm for the contract.
The text was updated successfully, but these errors were encountered:
The latest minor version of cosmwasm is used when the contract is built.
According to the rust specifications, if cargo.toml is written like this, the minor version latest will be used.
Cargo.toml
Currently,
v.15.*
is the latest. So, this versioncosmwasm-schema v1.5.2
is used.Therefore, we need to consider and decide whether to use a fixed version of cosmwasm for the contract.
The text was updated successfully, but these errors were encountered: