mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-27 14:11:04 +02:00
lnwire: add new SerializedSize method to all wire messages
This'll be useful for the bandwidth based rate limiting we'll implement in the next commit.
This commit is contained in:
@@ -241,6 +241,13 @@ func (c *ChannelUpdate2) MsgType() MessageType {
|
||||
return MsgChannelUpdate2
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (c *ChannelUpdate2) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(c)
|
||||
}
|
||||
|
||||
func (c *ChannelUpdate2) ExtraData() ExtraOpaqueData {
|
||||
return c.ExtraOpaqueData
|
||||
}
|
||||
|
Reference in New Issue
Block a user