From 9d9353567486d1537afb3ecad33a2527aee53c54 Mon Sep 17 00:00:00 2001 From: Mariano Cortesi Date: Mon, 8 Jun 2020 04:52:18 -0300 Subject: [PATCH] node: missing comma on toml tags (#21187) --- node/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/config.go b/node/config.go index 1905ac7fa..08bd2aba0 100644 --- a/node/config.go +++ b/node/config.go @@ -83,7 +83,7 @@ type Config struct { KeyStoreDir string `toml:",omitempty"` // ExternalSigner specifies an external URI for a clef-type signer - ExternalSigner string `toml:"omitempty"` + ExternalSigner string `toml:",omitempty"` // UseLightweightKDF lowers the memory and CPU requirements of the key store // scrypt KDF at the expense of security.