mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-05 06:00:45 +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:
@@ -29,6 +29,10 @@ type Warning struct {
|
||||
// interface.
|
||||
var _ Message = (*Warning)(nil)
|
||||
|
||||
// A compile time check to ensure Warning implements the lnwire.SizeableMessage
|
||||
// interface.
|
||||
var _ SizeableMessage = (*Warning)(nil)
|
||||
|
||||
// NewWarning creates a new Warning message.
|
||||
func NewWarning() *Warning {
|
||||
return &Warning{}
|
||||
@@ -74,3 +78,10 @@ func (c *Warning) Encode(w *bytes.Buffer, _ uint32) error {
|
||||
func (c *Warning) MsgType() MessageType {
|
||||
return MsgWarning
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (c *Warning) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(c)
|
||||
}
|
||||
|
Reference in New Issue
Block a user