Browse Source

Remove unused parameter msg in handle_funding_announce_depth(..., const u8 *msg)

ppa-0.6.1
practicalswift 7 years ago
committed by Christian Decker
parent
commit
7dad639c49
  1. 4
      channeld/channel.c

4
channeld/channel.c

@ -1976,7 +1976,7 @@ static void handle_funding_locked(struct peer *peer, const u8 *msg)
send_announcement_signatures(peer);
}
static void handle_funding_announce_depth(struct peer *peer, const u8 *msg)
static void handle_funding_announce_depth(struct peer *peer)
{
peer->announce_depth_reached = true;
send_announcement_signatures(peer);
@ -2360,7 +2360,7 @@ static void req_in(struct peer *peer, const u8 *msg)
handle_funding_locked(peer, msg);
return;
case WIRE_CHANNEL_FUNDING_ANNOUNCE_DEPTH:
handle_funding_announce_depth(peer, msg);
handle_funding_announce_depth(peer);
return;
case WIRE_CHANNEL_OFFER_HTLC:
handle_offer_htlc(peer, msg);

Loading…
Cancel
Save