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:
@@ -36,6 +36,10 @@ type UpdateFailMalformedHTLC struct {
|
||||
// lnwire.Message interface.
|
||||
var _ Message = (*UpdateFailMalformedHTLC)(nil)
|
||||
|
||||
// A compile time check to ensure UpdateFailMalformedHTLC implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*UpdateFailMalformedHTLC)(nil)
|
||||
|
||||
// Decode deserializes a serialized UpdateFailMalformedHTLC message stored in the passed
|
||||
// io.Reader observing the specified protocol version.
|
||||
//
|
||||
@@ -84,6 +88,13 @@ func (c *UpdateFailMalformedHTLC) MsgType() MessageType {
|
||||
return MsgUpdateFailMalformedHTLC
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (c *UpdateFailMalformedHTLC) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(c)
|
||||
}
|
||||
|
||||
// TargetChanID returns the channel id of the link for which this message is
|
||||
// intended.
|
||||
//
|
||||
|
Reference in New Issue
Block a user