Skip to content

Commit

Permalink
Reconnect source client (paritytech#1826)
Browse files Browse the repository at this point in the history
* reconnect source client

* fix test
  • Loading branch information
svyatonik authored and serban300 committed Apr 8, 2024
1 parent 5ad7f80 commit 8bb47de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridges/relays/parachains/src/parachains_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ where
P::SourceChain::NAME,
e,
);
return Err(FailedClient::Target)
return Err(FailedClient::Source)
},
}

Expand Down Expand Up @@ -844,7 +844,7 @@ mod tests {
None,
futures::future::pending(),
)),
Err(FailedClient::Target),
Err(FailedClient::Source),
);
}

Expand Down

0 comments on commit 8bb47de

Please sign in to comment.