1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-02-23 15:38:22 +00:00

- Add UNKNOWN_TYPE to ProtocolMessageType enum in paymentrequest.proto and BIP75 text (based on suggestions from http://androiddevblog.com/protocol-buffers-pitfall-adding-enum-values/)

- Update BIP75 Motivation and use cases to provide more color around reasoning and use of BIP75

NOTE: The BIP75 language no longer contains a description of the KYC compliance use case, as it is a single, very specific use-case that does not have any bearing on the technical specifications herein. BIP75 extends the original BIP70 Payment Protocol to become a two-way, encrypted messaging process, which can be used for a variety of reasons one of which is regulatory compliance.
This commit is contained in:
Matt David
2016-07-28 09:26:36 -07:00
parent 95df420895
commit f7e08aa1a7
2 changed files with 17 additions and 16 deletions

View File

@@ -57,10 +57,11 @@ message InvoiceRequest {
}
enum ProtocolMessageType {
INVOICE_REQUEST = 0;
PAYMENT_REQUEST = 1;
PAYMENT = 2;
PAYMENT_ACK = 3;
UNKNOWN_TYPE = 0;
INVOICE_REQUEST = 1;
PAYMENT_REQUEST = 2;
PAYMENT = 3;
PAYMENT_ACK = 4;
}
message ProtocolMessage {