Skip to content

Commit

Permalink
Merge pull request #54 from AbstractSDK/misha/abs-369-template-migrat…
Browse files Browse the repository at this point in the history
…emsg-should-be-struct

Fix migratemsg type
  • Loading branch information
CyberHoward authored Apr 4, 2024
2 parents 68e99be + 95c648b commit c5ead08
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions schema/migrate_msg.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions schema/module-schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions schema/query_msg.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions schema/raw/migrate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MigrateMsg",
"type": "string",
"enum": []
"type": "object",
"additionalProperties": false
}
2 changes: 1 addition & 1 deletion src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub enum AppQueryMsg {
}

#[cosmwasm_schema::cw_serde]
pub enum AppMigrateMsg {}
pub struct AppMigrateMsg {}

#[cosmwasm_schema::cw_serde]
pub struct ConfigResponse {}
Expand Down

0 comments on commit c5ead08

Please sign in to comment.