chore: remove EXPERIMENTAL for rfc #917 remote_addr

This commit is contained in:
Michael Schmoock
2022-03-08 15:31:26 +01:00
committed by Rusty Russell
parent 57fb34ed06
commit ef84d6eec5
3 changed files with 5 additions and 10 deletions

View File

@@ -90,7 +90,7 @@ static struct io_plan *peer_init_received(struct io_conn *conn,
/* fetch optional tlv `remote_addr` */
remote_addr = NULL;
#if EXPERIMENTAL_FEATURES /* BOLT1 remote_addr #917 */
/* BOLT-remote-address #1:
* The receiving node:
* ...
@@ -115,7 +115,6 @@ static struct io_plan *peer_init_received(struct io_conn *conn,
break;
}
}
#endif
/* The globalfeatures field is now unused, but there was a
* window where it was: combine the two. */
@@ -217,7 +216,7 @@ struct io_plan *peer_exchange_initmsg(struct io_conn *conn,
/* set optional tlv `remote_addr` on incoming IP connections */
tlvs->remote_addr = NULL;
#if EXPERIMENTAL_FEATURES /* BOLT1 remote_addr #917 */
/* BOLT-remote-address #1:
* The sending node:
* ...
@@ -241,7 +240,6 @@ struct io_plan *peer_exchange_initmsg(struct io_conn *conn,
break;
}
}
#endif
/* Initially, there were two sets of feature bits: global and local.
* Local affected peer nodes only, global affected everyone. Both were