From 0ba4d90f03598362956494658ada470cfcd83c8d Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Sat, 15 Aug 2020 18:49:05 -0700 Subject: [PATCH] Fix proto field numbering for buy offer respnose (#242) --- proto/squeak_server.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/proto/squeak_server.proto b/proto/squeak_server.proto index 8ba6ee58..39e49fb7 100644 --- a/proto/squeak_server.proto +++ b/proto/squeak_server.proto @@ -92,17 +92,17 @@ message SqueakBuyOffer { bytes iv = 3; /// The invoice preimage hash. - bytes preimage_hash = 5; + bytes preimage_hash = 4; /// The invoice - string payment_request = 6; + string payment_request = 5; /// The host of the seller lightning node - string host = 8; + string host = 6; /// The port of the seller lightning node - int32 port = 9; + int32 port = 7; /// The challenge proof - bytes proof = 10; + bytes proof = 8; }