File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ and this project adheres to
39
39
- cosmwasm-vm: The testing functions ` cosmwasm_vm::testing::* ` do not require
40
40
the contract's message types to implement ` schemars::JsonSchema ` anymore. This
41
41
makes the use of ` schemars ` optional for contracts. ([ #2201 ] )
42
+ - cosmwasm-std: Remove ` schemars::JsonSchema ` requirement from ` CustomMsg ` .
43
+ ([ #2201 ] )
42
44
43
45
## Fixed
44
46
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ use super::Empty;
48
48
///
49
49
/// impl CustomQuery for MyMsg {}
50
50
/// ```
51
- pub trait CustomMsg : Serialize + Clone + fmt:: Debug + PartialEq + JsonSchema { }
51
+ pub trait CustomMsg : Serialize + Clone + fmt:: Debug + PartialEq { }
52
52
53
53
impl CustomMsg for Empty { }
54
54
You can’t perform that action at this time.
0 commit comments