lnwire: fix CommitSignature max payload length
This commit increase the max allowed payload length for the CommitSignature method in order to account for the added 8 byte log index.
This commit is contained in:
parent
c8de0924ba
commit
0b86c01067
@ -101,8 +101,8 @@ func (c *CommitSignature) Command() uint32 {
|
||||
//
|
||||
// This is part of the lnwire.Message interface.
|
||||
func (c *CommitSignature) MaxPayloadLength(uint32) uint32 {
|
||||
// 36 + 8 + 73
|
||||
return 117
|
||||
// 36 + 8 + 8 + 73
|
||||
return 125
|
||||
}
|
||||
|
||||
// Validate performs any necessary sanity checks to ensure all fields present
|
||||
|
Loading…
Reference in New Issue
Block a user