From 87af51a4228d4a75894071e6ad294c39e075d7a0 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 31 Aug 2016 16:06:31 +0930 Subject: [PATCH] daemon: remove three fixed FIXMEs. Signed-off-by: Rusty Russell --- daemon/db.c | 1 - daemon/peer.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/daemon/db.c b/daemon/db.c index 814320d77..54371874f 100644 --- a/daemon/db.c +++ b/daemon/db.c @@ -698,7 +698,6 @@ static void connect_htlc_src(struct lightningd_state *dstate) tal_free(ctx); } -/* FIXME: Expose pull/push and use that here. */ static const char *linearize_shachain(const tal_t *ctx, const struct shachain *shachain) { diff --git a/daemon/peer.c b/daemon/peer.c index 4f052645c..e02efd07f 100644 --- a/daemon/peer.c +++ b/daemon/peer.c @@ -4107,7 +4107,6 @@ static struct io_plan *peer_reconnect(struct io_conn *conn, struct peer *peer) if (peer->conn) return io_close(conn); - /* FIXME: log incoming address. */ log_debug(peer->log, "Reconnected, doing crypto..."); peer->conn = conn; assert(!peer->connected); @@ -4440,7 +4439,6 @@ static void json_newhtlc(struct command *cmd, command_success(cmd, response); } -/* FIXME: Use HTLC ids, not r values! */ const struct json_command newhtlc_command = { "newhtlc", json_newhtlc,