mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-01 10:11:11 +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:
@@ -105,6 +105,10 @@ type DynPropose struct {
|
||||
// interface.
|
||||
var _ Message = (*DynPropose)(nil)
|
||||
|
||||
// A compile time check to ensure DynPropose implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*DynPropose)(nil)
|
||||
|
||||
// Encode serializes the target DynPropose into the passed io.Writer.
|
||||
// Serialization will observe the rules defined by the passed protocol version.
|
||||
//
|
||||
@@ -317,3 +321,10 @@ func (dp *DynPropose) Decode(r io.Reader, _ uint32) error {
|
||||
func (dp *DynPropose) MsgType() MessageType {
|
||||
return MsgDynPropose
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (dp *DynPropose) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(dp)
|
||||
}
|
||||
|
Reference in New Issue
Block a user