lnwire: allow longer failure messages

This fixes an incompatibility where lnd enforces a strict 256 byte
failure message, where as the spec sets this only as the recommended
length.
This commit is contained in:
Joost Jager
2022-09-13 16:13:46 +02:00
parent 5ff5838d74
commit 4c8ea29336
8 changed files with 111 additions and 8 deletions

View File

@@ -5,6 +5,7 @@ import (
"container/list"
"encoding/binary"
"fmt"
"math"
"sync"
"time"
@@ -245,7 +246,7 @@ func deserializeResult(k, v []byte) (*paymentResult, error) {
// Read failure.
failureBytes, err := wire.ReadVarBytes(
r, 0, lnwire.FailureMessageLength, "failure",
r, 0, math.MaxUint16, "failure",
)
if err != nil {
return nil, err