mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-26 21:51:27 +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:
@@ -41,6 +41,10 @@ type AnnounceSignatures2 struct {
|
||||
// lnwire.Message interface.
|
||||
var _ Message = (*AnnounceSignatures2)(nil)
|
||||
|
||||
// A compile time check to ensure AnnounceSignatures2 implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*AnnounceSignatures2)(nil)
|
||||
|
||||
// Decode deserializes a serialized AnnounceSignatures2 stored in the passed
|
||||
// io.Reader observing the specified protocol version.
|
||||
//
|
||||
@@ -82,6 +86,13 @@ func (a *AnnounceSignatures2) MsgType() MessageType {
|
||||
return MsgAnnounceSignatures2
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (a *AnnounceSignatures2) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(a)
|
||||
}
|
||||
|
||||
// SCID returns the ShortChannelID of the channel.
|
||||
//
|
||||
// NOTE: this is part of the AnnounceSignatures interface.
|
||||
|
Reference in New Issue
Block a user