htlcswitch/test: add encrypted data to blinded intermediate hop

Blinding points will always be accompanied by encrypted data, so
update the test to more accurately represent reality.
This commit is contained in:
Carla Kirk-Cohen 2023-11-01 15:20:04 -04:00
parent 1bb48178d7
commit b0870ea2ed
No known key found for this signature in database
GPG Key ID: 4CA7FE54A6213C91

View File

@ -247,6 +247,8 @@ var decodePayloadTests = []decodePayloadTest{
0x02, 0x00,
// cltv
0x04, 0x00,
// encrypted data
0x0a, 0x03, 0x03, 0x02, 0x01,
// blinding point (type / length)
0x0c, 0x21,
},
@ -254,6 +256,7 @@ var decodePayloadTests = []decodePayloadTest{
testPubKey.SerializeCompressed()...,
),
shouldHaveBlinding: true,
shouldHaveEncData: true,
},
{
name: "final hop with mpp",