mirror of
https://github.com/lightning/bolts.git
synced 2024-11-19 01:50:03 +01:00
BOLT 1: Restore all-zero error semantics
There were valid uses for "I don't want to talk to you anymore" apparently! Also fixed some tabs -> spaces. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
c36c14d6da
commit
8032f70f57
@ -324,6 +324,8 @@ For simplicity of diagnosis, it's often useful to tell a peer that something is
|
||||
|
||||
#### Requirements
|
||||
|
||||
The channel is referred to by `channel_id`, unless `channel_id` is 0 (i.e. all bytes are 0), in which case it refers to all channels.
|
||||
|
||||
The funding node:
|
||||
- for all error messages sent before (and including) the `funding_created` message:
|
||||
- MUST use `temporary_channel_id` in lieu of `channel_id`.
|
||||
@ -336,7 +338,8 @@ A sending node:
|
||||
- SHOULD send `error` for protocol violations or internal errors that make channels unusable or that make further communication unusable.
|
||||
- SHOULD send `error` with the unknown `channel_id` in reply to messages of type `32`-`255` related to unknown channels.
|
||||
- when sending `error`:
|
||||
- MUST fail the channel referred to by the error message.
|
||||
- MUST fail the channel(s) referred to by the error message.
|
||||
- MAY set `channel_id` to all zero to indicate all channels.
|
||||
- when sending `warning`:
|
||||
- MAY set `channel_id` to all zero if the warning is not related to a specific channel.
|
||||
- MAY close the connection after sending.
|
||||
@ -346,6 +349,9 @@ A sending node:
|
||||
|
||||
The receiving node:
|
||||
- upon receiving `error`:
|
||||
- if `channel_id` is all zero:
|
||||
- MUST fail all channels with the sending node.
|
||||
- otherwise:
|
||||
- MUST fail the channel referred to by `channel_id`, if that channel is with the sending node.
|
||||
- upon receiving `warning`:
|
||||
- SHOULD log the message for later diagnosis.
|
||||
|
Loading…
Reference in New Issue
Block a user