Skip to content

Commit 6559767

Browse files
author
Matt David
committed
- Replace UNKNOWN_TYPE with UNKNOWN_MESSAGE_TYPE
1 parent f7e08aa commit 6559767

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bip-0075.mediawiki

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ message InvoiceRequest {
109109
This enum is used in the newly defined [[#ProtocolMessage|ProtocolMessage]] and [[#EncryptedProtocolMessage|EncryptedProtocolMessage]] messages to define the serialized message type. The '''ProtocolMessageType''' enum is defined in an extensible way to allow for new message type additions to the Payment Protocol.
110110
<pre>
111111
enum ProtocolMessageType {
112-
UNKNOWN_TYPE = 0;
112+
UNKNOWN_MESSAGE_TYPE = 0;
113113
INVOICE_REQUEST = 1;
114114
PAYMENT_REQUEST = 2;
115115
PAYMENT = 3;

bip-0075/paymentrequest.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ message InvoiceRequest {
5757
}
5858

5959
enum ProtocolMessageType {
60-
UNKNOWN_TYPE = 0;
60+
UNKNOWN_MESSAGE_TYPE = 0;
6161
INVOICE_REQUEST = 1;
6262
PAYMENT_REQUEST = 2;
6363
PAYMENT = 3;

0 commit comments

Comments
 (0)