Skip to content

Commit e7bc1fb

Browse files
committed
make trim_left_zero public
1 parent fa463ca commit e7bc1fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ibc/src/client_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ fn maybe_consensus_state(
914914
}
915915
}
916916

917-
fn trim_left_zero(value: &[u8]) -> &[u8] {
917+
pub fn trim_left_zero(value: &[u8]) -> &[u8] {
918918
let mut pos = 0;
919919
for v in value {
920920
if *v != 0 {

0 commit comments

Comments
 (0)