mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-14 12:42:48 +02:00
9 lines
265 B
Go
9 lines
265 B
Go
|
|
package chanacceptor
|
||
|
|
|
||
|
|
// ChanAcceptError is an error that it returned when an external channel
|
||
|
|
// acceptor rejects a channel. Note that this error type is whitelisted and will
|
||
|
|
// be delivered to the peer initiating a channel.
|
||
|
|
type ChanAcceptError struct {
|
||
|
|
error
|
||
|
|
}
|