Files
tendermint/privval/errors.go
T
2019-04-03 14:15:50 +02:00

24 lines
642 B
Go

package privval
import (
"fmt"
)
// Socket errors.
var (
ErrUnexpectedResponse = fmt.Errorf("received unexpected response")
ErrListenerTimeout = fmt.Errorf("signer listening endpoint timed out")
ErrDialerTimeout = fmt.Errorf("signer dialer endpoint timed out")
)
// RemoteSignerError allows (remote) validators to include meaningful error descriptions in their reply.
type RemoteSignerError struct {
// TODO(ismail): create an enum of known errors
Code int
Description string
}
func (e *RemoteSignerError) Error() string {
return fmt.Sprintf("signerServiceEndpoint returned error #%d: %s", e.Code, e.Description)
}