Skip to content
Snippets Groups Projects
Unverified Commit e64179a8 authored by Angelo Capossele's avatar Angelo Capossele Committed by GitHub
Browse files

Fix enabled/disabled plugins spelling (#470)

* :lipstick: Fix enabled/disabled plugins spelling

* :lipstick: Fix publicKey camelCase
parent dec07f54
No related branches found
No related tags found
No related merge requests found
......@@ -90,11 +90,11 @@ type Response struct {
// identity ID of the node encoded in base58 and truncated to its first 8 bytes
IdentityID string `json:"identityID,omitempty"`
// public key of the node encoded in base58
PublicKey string `json:"publickey,omitempty"`
PublicKey string `json:"publicKey,omitempty"`
// list of enabled plugins
EnabledPlugins []string `json:"enabledplugins,omitempty"`
EnabledPlugins []string `json:"enabledPlugins,omitempty"`
// list if disabled plugins
DisabledPlugins []string `json:"disabledlugins,omitempty"`
DisabledPlugins []string `json:"disabledPlugins,omitempty"`
// error of the response
Error string `json:"error,omitempty"`
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment