daemon: remove three fixed FIXMEs.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2016-08-31 16:06:31 +09:30
parent 42cf0ef543
commit 87af51a422
2 changed files with 0 additions and 3 deletions

View File

@@ -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)
{

View File

@@ -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,