Skip to content

Commit

Permalink
Merge pull request cosmos#106 from confio/plafer/typo-fix
Browse files Browse the repository at this point in the history
Fix a copy/paste typo in an error message
  • Loading branch information
hu55a1n1 committed Sep 23, 2022
2 parents 9c4e35d + 9d6b91d commit f90dd76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn ensure_inner(inner: &ics23::InnerOp, spec: &ics23::ProofSpec) -> Result<()> {
ensure!(
inner.prefix.len()
<= (inner_spec.max_prefix_length + max_left_child_bytes) as usize,
"Inner prefix too short: {}",
"Inner prefix too long: {}",
inner.prefix.len(),
);
Ok(())
Expand Down

0 comments on commit f90dd76

Please sign in to comment.