Skip to content

Commit 7fc21c3

Browse files
authored
Update packages/std/src/results/cosmos_msg.rs
1 parent 46fae64 commit 7fc21c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/std/src/results/cosmos_msg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pub enum DistributionMsg {
123123
fn binary_to_string(data: &Binary, fmt: &mut core::fmt::Formatter) -> core::fmt::Result {
124124
match core::str::from_utf8(data.as_slice()) {
125125
Ok(s) => fmt.write_str(s),
126-
Err(_) => core::fmt::Debug::fmt(data, fmt),
126+
Err(_) => fmt::Debug::fmt(data, fmt),
127127
}
128128
}
129129

0 commit comments

Comments
 (0)