Browse Source

Remove unused parameter rstate in get_out_node_connection_of(struct routing_state *rstate, ...)

ppa-0.6.1
practicalswift 7 years ago
committed by Christian Decker
parent
commit
0013caedfe
  1. 5
      gossipd/routing.c

5
gossipd/routing.c

@ -1164,8 +1164,7 @@ struct route_hop *get_route(tal_t *ctx, struct routing_state *rstate,
/* Get the struct node_connection matching the short_channel_id, /* Get the struct node_connection matching the short_channel_id,
* which must be an out connection of the given node. */ * which must be an out connection of the given node. */
static struct node_connection * static struct node_connection *
get_out_node_connection_of(struct routing_state *rstate, get_out_node_connection_of(const struct node *node,
const struct node *node,
const struct short_channel_id *short_channel_id) const struct short_channel_id *short_channel_id)
{ {
int i; int i;
@ -1243,7 +1242,7 @@ void routing_failure(struct routing_state *rstate,
for (i = 0; i < tal_count(node->out); ++i) for (i = 0; i < tal_count(node->out); ++i)
routing_failure_on_nc(rstate, failcode, node->out[i], now); routing_failure_on_nc(rstate, failcode, node->out[i], now);
} else { } else {
nc = get_out_node_connection_of(rstate, node, scid); nc = get_out_node_connection_of(node, scid);
if (nc) if (nc)
routing_failure_on_nc(rstate, failcode, nc, now); routing_failure_on_nc(rstate, failcode, nc, now);
else else

Loading…
Cancel
Save