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:
@@ -44,6 +44,10 @@ type FundingCreated struct {
|
||||
// interface.
|
||||
var _ Message = (*FundingCreated)(nil)
|
||||
|
||||
// A compile time check to ensure FundingCreated implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*FundingCreated)(nil)
|
||||
|
||||
// Encode serializes the target FundingCreated into the passed io.Writer
|
||||
// implementation. Serialization will observe the rules defined by the passed
|
||||
// protocol version.
|
||||
@@ -117,3 +121,10 @@ func (f *FundingCreated) Decode(r io.Reader, pver uint32) error {
|
||||
func (f *FundingCreated) MsgType() MessageType {
|
||||
return MsgFundingCreated
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (f *FundingCreated) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(f)
|
||||
}
|
||||
|
Reference in New Issue
Block a user