From 1a85fddfeb80a832866a5623e9d378bad6451ed7 Mon Sep 17 00:00:00 2001 From: Peter Rabbitson Date: Wed, 8 Apr 2020 23:00:17 +0200 Subject: [PATCH] For now remove export from the gateway whitelist --- core/commands/commands_test.go | 1 - core/commands/root.go | 1 - 2 files changed, 2 deletions(-) diff --git a/core/commands/commands_test.go b/core/commands/commands_test.go index ee6fd45776e..a543eaa6296 100644 --- a/core/commands/commands_test.go +++ b/core/commands/commands_test.go @@ -24,7 +24,6 @@ func TestROCommands(t *testing.T) { "/commands", "/dag", "/dag/get", - "/dag/export", "/dag/resolve", "/dns", "/get", diff --git a/core/commands/root.go b/core/commands/root.go index c31199308e8..752cfd4e3f3 100644 --- a/core/commands/root.go +++ b/core/commands/root.go @@ -190,7 +190,6 @@ var rootROSubcommands = map[string]*cmds.Command{ "dag": { Subcommands: map[string]*cmds.Command{ "get": dag.DagGetCmd, - "export": dag.DagExportCmd, "resolve": dag.DagResolveCmd, }, },