Skip to content

Commit

Permalink
Update cw20-base with new expiration schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Aug 21, 2020
1 parent 7d388cd commit 748a6b8
Showing 1 changed file with 7 additions and 23 deletions.
30 changes: 7 additions & 23 deletions contracts/cw20-base/schema/handle_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,17 +278,9 @@
],
"properties": {
"at_height": {
"type": "object",
"required": [
"height"
],
"properties": {
"height": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
}
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
}
},
Expand All @@ -300,22 +292,14 @@
],
"properties": {
"at_time": {
"type": "object",
"required": [
"time"
],
"properties": {
"time": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
}
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
}
},
{
"description": "Never will never expire. Used to distinguish None from Some(Expiration::Never)",
"description": "Never will never expire. Used to express the empty variant",
"type": "object",
"required": [
"never"
Expand Down

0 comments on commit 748a6b8

Please sign in to comment.