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:
@@ -70,6 +70,9 @@ func NewReplyChannelRange() *ReplyChannelRange {
|
||||
// lnwire.Message interface.
|
||||
var _ Message = (*ReplyChannelRange)(nil)
|
||||
|
||||
// A compile time check to ensure ReplyChannelRange implements the lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*ReplyChannelRange)(nil)
|
||||
|
||||
// Decode deserializes a serialized ReplyChannelRange message stored in the
|
||||
// passed io.Reader observing the specified protocol version.
|
||||
//
|
||||
@@ -223,3 +226,10 @@ func (c *ReplyChannelRange) LastBlockHeight() uint32 {
|
||||
}
|
||||
return uint32(lastBlockHeight)
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (c *ReplyChannelRange) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(c)
|
||||
}
|
||||
|
Reference in New Issue
Block a user