mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-10-01 11:04:55 +02:00
channeldb/codec: add NewUnknownElementType constructor
This commit is contained in:
@@ -51,6 +51,12 @@ type UnknownElementType struct {
|
||||
element interface{}
|
||||
}
|
||||
|
||||
// NewUnknownElementType creates a new UnknownElementType error from the passed
|
||||
// method name and element.
|
||||
func NewUnknownElementType(method string, el interface{}) UnknownElementType {
|
||||
return UnknownElementType{method: method, element: el}
|
||||
}
|
||||
|
||||
// Error returns the name of the method that encountered the error, as well as
|
||||
// the type that was unsupported.
|
||||
func (e UnknownElementType) Error() string {
|
||||
|
Reference in New Issue
Block a user