File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ pub struct Ibc2PacketAckMsg {
139
139
pub source_client : String ,
140
140
pub destination_client : String ,
141
141
pub data : Ibc2Payload ,
142
- pub acknowledgement : Vec < u8 > ,
142
+ pub acknowledgement : Binary ,
143
143
pub relayer : Addr ,
144
144
}
145
145
@@ -148,7 +148,7 @@ impl Ibc2PacketAckMsg {
148
148
source_client : String ,
149
149
destination_client : String ,
150
150
data : Ibc2Payload ,
151
- acknowledgement : Vec < u8 > ,
151
+ acknowledgement : Binary ,
152
152
relayer : Addr ,
153
153
) -> Self {
154
154
Self {
Original file line number Diff line number Diff line change @@ -683,7 +683,7 @@ pub fn mock_ibc2_packet_ack(data: &impl Serialize) -> StdResult<Ibc2PacketAckMsg
683
683
encoding : "json" . to_string ( ) ,
684
684
value : to_json_binary ( data) ?,
685
685
} ,
686
- vec ! [ ] ,
686
+ Binary :: new ( vec ! [ ] ) ,
687
687
Addr :: unchecked ( "relayer" ) ,
688
688
) )
689
689
}
You can’t perform that action at this time.
0 commit comments