We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c708eca commit ca660b5Copy full SHA for ca660b5
1 file changed
pkg/types/llo/types.go
@@ -271,8 +271,11 @@ type ChannelDefinition struct {
271
// Source is the source of the channel definition.
272
// It is set by the LLO channel definitions cache.
273
// The source is the id of the role that added the channel definition (i.e. the channel adder)
274
- // 0 is always the ChannelConfigStore owner, greater values are adders.
+ // 1 is always the ChannelConfigStore owner, greater values are adders.
275
Source uint32 `json:"-"`
276
+ // Tombstone is a boolean flag that indicates if the channel definition is owner a tombstone.
277
+ // If true, the adder channel definition will be removed.
278
+ Tombstone bool `json:"tombstone"`
279
}
280
281
func (a ChannelDefinition) Equals(b ChannelDefinition) bool {
0 commit comments