Browse Source

gossipd: remove oververbose logging when we uncompress short_channel_id array

Reported-by: Xian001 (#1581)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 7 years ago
committed by Christian Decker
parent
commit
60b3f0e376
  1. 2
      gossipd/gossip.c

2
gossipd/gossip.c

@ -885,8 +885,6 @@ static struct short_channel_id *decode_short_ids(const tal_t *ctx,
encoded = unzlib(tmpctx, encoded, max); encoded = unzlib(tmpctx, encoded, max);
if (!encoded) if (!encoded)
return NULL; return NULL;
status_trace("Uncompressed %zu into %zu bytes (%s)",
max, tal_len(encoded), tal_hex(tmpctx, encoded));
max = tal_len(encoded); max = tal_len(encoded);
/* fall thru */ /* fall thru */
case SHORTIDS_UNCOMPRESSED: case SHORTIDS_UNCOMPRESSED:

Loading…
Cancel
Save