mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 06:32:18 +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:
@@ -63,6 +63,10 @@ func NewChannelReady(cid ChannelID, npcp *btcec.PublicKey) *ChannelReady {
|
||||
// interface.
|
||||
var _ Message = (*ChannelReady)(nil)
|
||||
|
||||
// A compile time check to ensure ChannelReady implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*ChannelReady)(nil)
|
||||
|
||||
// Decode deserializes the serialized ChannelReady message stored in the
|
||||
// passed io.Reader into the target ChannelReady using the deserialization
|
||||
// rules defined by the passed protocol version.
|
||||
@@ -170,3 +174,10 @@ func (c *ChannelReady) Encode(w *bytes.Buffer, _ uint32) error {
|
||||
func (c *ChannelReady) MsgType() MessageType {
|
||||
return MsgChannelReady
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (c *ChannelReady) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(c)
|
||||
}
|
||||
|
Reference in New Issue
Block a user