Fix proto field numbering for buy offer respnose (#242)

This commit is contained in:
Jonathan Zernik 2020-08-15 18:49:05 -07:00 committed by GitHub
parent 61c460de40
commit 0ba4d90f03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}