Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rpc/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ type AlreadyRegisteredError struct {
p string
}

func newAlreadyRegisteredError(p string) AlreadyRegisteredError {
func NewAlreadyRegisteredError(p string) AlreadyRegisteredError {
return AlreadyRegisteredError{p: p}
}

Expand Down
2 changes: 1 addition & 1 deletion rpc/protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (h *protocolHandler) registerProtocol(p Protocol) error {
defer h.mtx.Unlock()

if _, found := h.protocols[p.Name]; found {
return newAlreadyRegisteredError(p.Name)
return NewAlreadyRegisteredError(p.Name)
}
h.protocols[p.Name] = p
return nil
Expand Down