From 03172faf69a00fc299166a083f4555ab6daad9f7 Mon Sep 17 00:00:00 2001 From: renaynay <41963722+renaynay@users.noreply.github.com> Date: Mon, 30 Mar 2020 16:21:52 +0200 Subject: [PATCH] fixed incorrect call to register apis from whitelist in clef/main.go --- cmd/clef/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/clef/main.go b/cmd/clef/main.go index 1e09d707a8..e5f2f2a0c5 100644 --- a/cmd/clef/main.go +++ b/cmd/clef/main.go @@ -541,7 +541,7 @@ func signer(c *cli.Context) error { srv := rpc.NewServer() - err := node.RegisterApisFromWhitelist(rpcAPI, []string{"account"}, srv) + err := node.RegisterApisFromWhitelist(rpcAPI, []string{"account"}, srv, false) if err != nil { utils.Fatalf("Could not register API: %w", err) // TODO should this be a fatal failure? }