summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorbt <bt@rctt.net>2026-04-18 23:12:11 +0200
committerbt <bt@rctt.net>2026-04-18 23:12:33 +0200
commitd63176e22d21e347cf1c197084afe8eb1d5376b4 (patch)
tree501b77a9094dfa09acccaebd7698aee256309925 /core
parente9aebac1a2a4732763c2f7e4428a23983d4eb6a3 (diff)
downloadsolec-d63176e22d21e347cf1c197084afe8eb1d5376b4.tar.gz
solec-d63176e22d21e347cf1c197084afe8eb1d5376b4.zip
[docs] Update protocol docsv0.2.0
Diffstat (limited to 'core')
-rw-r--r--core/errors.go13
1 files changed, 6 insertions, 7 deletions
diff --git a/core/errors.go b/core/errors.go
index ed6702d..a50fbf7 100644
--- a/core/errors.go
+++ b/core/errors.go
@@ -3,11 +3,10 @@ package core
import "errors"
var (
- ErrUnexpectedPayloadType = errors.New("unexpected payload type")
- ErrAuthInvalidUser = errors.New("invalid user")
- ErrAuthInvalidPassword = errors.New("invalid password")
- ErrAuthReverseLookupFailed = errors.New("declared name does not match with DNS name")
- ErrInvalidAddress = errors.New("invalid address")
- ErrNotSupported = errors.New("not supported")
- ErrDisconnected = errors.New("disconnected")
+ ErrUnexpectedPayloadType = errors.New("unexpected payload type")
+ ErrAuthInvalidUser = errors.New("invalid user")
+ ErrAuthInvalidPassword = errors.New("invalid password")
+ ErrInvalidAddress = errors.New("invalid address")
+ ErrNotSupported = errors.New("not supported")
+ ErrDisconnected = errors.New("disconnected")
)