Skip to content

Commit

Permalink
Fix typo after refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Jun 16, 2021
1 parent 529c20d commit a799a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/src/chain/cosmos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ fn empty_event_present(events: &[IbcEvent]) -> bool {
fn all_tx_results_found(tx_sync_results: &[TxSyncResult]) -> bool {
tx_sync_results
.iter()
.all(|r| empty_event_present(&r.events))
.all(|r| !empty_event_present(&r.events))
}

impl Chain for CosmosSdkChain {
Expand Down

0 comments on commit a799a89

Please sign in to comment.