mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-20 13:34:32 +01:00
lnwire: make ErrorCode satisfy error interface
This commit is contained in:
parent
0cbb759d0a
commit
b3441561cf
1 changed files with 7 additions and 0 deletions
|
@ -48,6 +48,13 @@ func (e ErrorCode) String() string {
|
|||
}
|
||||
}
|
||||
|
||||
// Error returns the human redable version of the target ErrorCode.
|
||||
//
|
||||
// Satisfies the Error interface.
|
||||
func (e ErrorCode) Error() string {
|
||||
return e.String()
|
||||
}
|
||||
|
||||
// ErrorData is a set of bytes associated with a particular sent error. A
|
||||
// receiving node SHOULD only print out data verbatim if the string is composed
|
||||
// solely of printable ASCII characters. For reference, the printable character
|
||||
|
|
Loading…
Add table
Reference in a new issue