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:
@@ -99,6 +99,10 @@ type ChannelReestablish struct {
|
||||
// lnwire.Message interface.
|
||||
var _ Message = (*ChannelReestablish)(nil)
|
||||
|
||||
// A compile time check to ensure ChannelReestablish implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*ChannelReestablish)(nil)
|
||||
|
||||
// Encode serializes the target ChannelReestablish into the passed io.Writer
|
||||
// observing the protocol version specified.
|
||||
//
|
||||
@@ -234,3 +238,10 @@ func (a *ChannelReestablish) Decode(r io.Reader, pver uint32) error {
|
||||
func (a *ChannelReestablish) MsgType() MessageType {
|
||||
return MsgChannelReestablish
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (a *ChannelReestablish) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(a)
|
||||
}
|
||||
|
Reference in New Issue
Block a user