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