For now remove export from the gateway whitelist
Peter Rabbitson committed
Apr 8, 2020 at 23:00 UTC
1a85fddfeb80a832866a5623e9d378bad6451ed7
2 files changed
-2
core/commands/commands_test.go
-1
@@ -24,7 +24,6 @@ func TestROCommands(t *testing.T) {
24
"/commands",
25
"/dag",
26
"/dag/get",
27
- "/dag/export",
27
"/dag/resolve",
28
"/dns",
29
"/get",
core/commands/root.go
-1
@@ -190,7 +190,6 @@ var rootROSubcommands = map[string]*cmds.Command{
190
"dag": {
191
Subcommands: map[string]*cmds.Command{
192
"get": dag.DagGetCmd,
193
- "export": dag.DagExportCmd,
193
"resolve": dag.DagResolveCmd,
194
},
195
},