Skip to content

Commit

Permalink
Skip hermes check if we don't have a ln address
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Jun 14, 2024
1 parent dc03da6 commit 64bd24c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mutiny-core/src/hermes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@ impl<S: MutinyStorage> HermesClient<S> {
o.name
);
*c = (o.name.clone(), true);

// if we don't have a lightning address, no need to continue
if o.name.is_none() {
break;
}
}

// check that federation is still the same
Expand Down

0 comments on commit 64bd24c

Please sign in to comment.