Skip to content

Commit

Permalink
Update to rust 1.49, latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jan 18, 2021
1 parent 350d8e4 commit 9cbc21d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/ibc-reflect/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/std/src/ibc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ impl PartialOrd for IbcTimeoutHeight {

impl Ord for IbcTimeoutHeight {
fn cmp(&self, other: &Self) -> Ordering {
match self.revision_number.cmp(other.revision_number) {
Ordering::Equal => self.timeout_height.cmp(other.timeout_height),
match self.revision_number.cmp(&other.revision_number) {
Ordering::Equal => self.timeout_height.cmp(&other.timeout_height),
other => other,
}
}
Expand Down

0 comments on commit 9cbc21d

Please sign in to comment.