From 6559767e03dca8394fd28f1fb7b823d294e17d3b Mon Sep 17 00:00:00 2001 From: Matt David Date: Thu, 28 Jul 2016 15:13:32 -0700 Subject: - Replace UNKNOWN_TYPE with UNKNOWN_MESSAGE_TYPE --- bip-0075.mediawiki | 2 +- bip-0075/paymentrequest.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bip-0075.mediawiki b/bip-0075.mediawiki index 45ae282..77616ba 100644 --- a/bip-0075.mediawiki +++ b/bip-0075.mediawiki @@ -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.
 enum ProtocolMessageType {
-    UNKNOWN_TYPE = 0;
+    UNKNOWN_MESSAGE_TYPE = 0;
     INVOICE_REQUEST = 1;
     PAYMENT_REQUEST = 2;
     PAYMENT = 3;
diff --git a/bip-0075/paymentrequest.proto b/bip-0075/paymentrequest.proto
index caab02a..9f170fe 100644
--- a/bip-0075/paymentrequest.proto
+++ b/bip-0075/paymentrequest.proto
@@ -57,7 +57,7 @@ message InvoiceRequest {
 }
 
 enum ProtocolMessageType {
-    UNKNOWN_TYPE = 0;
+    UNKNOWN_MESSAGE_TYPE = 0;
     INVOICE_REQUEST = 1;
     PAYMENT_REQUEST = 2;
     PAYMENT = 3;
-- 
cgit v1.2.3