From 8644784b03aca1b42f955cd230af808dbb8595fb Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 23 Jul 2019 11:34:23 +0200 Subject: [PATCH] identify a false positive for IS_NEW_CHANNEL rpc --- rpc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpc.js b/rpc.js index 07d4ae313..33f60a902 100644 --- a/rpc.js +++ b/rpc.js @@ -1475,6 +1475,8 @@ var removeLoginBlock = function (Env, msg, cb) { }); }; +// FIXME METADATA +// since we're changing how metadata works this can lead to false positives var isNewChannel = function (Env, channel, cb) { if (!isValidId(channel)) { return void cb('INVALID_CHAN'); } if (channel.length !== 32) { return void cb('INVALID_CHAN'); }