From 75fc83652af0f928bb48cf1f117fbde45aeacea8 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Mon, 4 Jun 2018 12:39:31 +0100 Subject: [PATCH] chore: remove experimental mfs flag We are going all-in with mfs and not having it behind a flag: https://github.com/ipfs/js-ipfs/pull/1360#issuecomment-393847985 --- src/ipfsd-in-proc.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ipfsd-in-proc.js b/src/ipfsd-in-proc.js index 9c251e07..5cdaf999 100644 --- a/src/ipfsd-in-proc.js +++ b/src/ipfsd-in-proc.js @@ -57,8 +57,6 @@ class Node extends EventEmitter { this.opts.EXPERIMENTAL.pubsub = true } else if (arg === '--enable-sharding-experiment') { this.opts.EXPERIMENTAL.sharding = true - } else if (arg === '--enable-mfs-experiment') { - this.opts.EXPERIMENTAL.mfs = true } else if (arg.startsWith('--pass')) { this.opts.pass = arg.split(' ').slice(1).join(' ') } else {