aboutsummaryrefslogtreecommitdiffstats
path: root/signer
diff options
context:
space:
mode:
Diffstat (limited to 'signer')
-rw-r--r--signer/core/api.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/signer/core/api.go b/signer/core/api.go
index 1372646de..9a2a49ccc 100644
--- a/signer/core/api.go
+++ b/signer/core/api.go
@@ -189,15 +189,6 @@ type (
var ErrRequestDenied = errors.New("Request denied")
-type errorWrapper struct {
- msg string
- err error
-}
-
-func (ew errorWrapper) String() string {
- return fmt.Sprintf("%s\n%s", ew.msg, ew.err)
-}
-
// NewSignerAPI creates a new API that can be used for Account management.
// ksLocation specifies the directory where to store the password protected private
// key that is generated when a new Account is created.