Browse Source

gossip: Fix concurrent PR merge issue with structeq

PR #1618 in parallel with the migration to macro `structeq` created this.

Fixes #1674
ppa-0.6.1
Christian Decker 7 years ago
parent
commit
14c6310a4f
  1. 2
      gossipd/gossip.c

2
gossipd/gossip.c

@ -1699,7 +1699,7 @@ static struct local_update *find_local_update(struct daemon *daemon,
struct local_update *i;
list_for_each(&daemon->local_updates, i, list) {
if (structeq(scid, &i->scid))
if (short_channel_id_eq(scid, &i->scid))
return i;
}
return NULL;

Loading…
Cancel
Save