Skip to content

Commit

Permalink
- Replace UNKNOWN_TYPE with UNKNOWN_MESSAGE_TYPE
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt David committed Jul 28, 2016
1 parent f7e08aa commit 6559767
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bip-0075.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ message InvoiceRequest {
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.
<pre>
enum ProtocolMessageType {
UNKNOWN_TYPE = 0;
UNKNOWN_MESSAGE_TYPE = 0;
INVOICE_REQUEST = 1;
PAYMENT_REQUEST = 2;
PAYMENT = 3;
Expand Down
2 changes: 1 addition & 1 deletion bip-0075/paymentrequest.proto
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ message InvoiceRequest {
}

enum ProtocolMessageType {
UNKNOWN_TYPE = 0;
UNKNOWN_MESSAGE_TYPE = 0;
INVOICE_REQUEST = 1;
PAYMENT_REQUEST = 2;
PAYMENT = 3;
Expand Down

0 comments on commit 6559767

Please sign in to comment.