summaryrefslogtreecommitdiff
path: root/bip-0075
diff options
context:
space:
mode:
authorMatt David <matt@netki.com>2016-11-28 10:39:58 -0800
committerMatt David <matt@netki.com>2016-11-28 10:39:58 -0800
commit7dd419e08acb5075815aac3963aeb1a7377e4daa (patch)
tree49bbdbc63b89b4c7d3da638e81e70823c660889a /bip-0075
parent19439279d0c66c85abc9cdee7c666c1aa96a1143 (diff)
downloadbips-7dd419e08acb5075815aac3963aeb1a7377e4daa.tar.xz
- Update identifier to be a required field in ProtocolMessage and EncryptedProtocolMessage
Diffstat (limited to 'bip-0075')
-rw-r--r--bip-0075/paymentrequest.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/bip-0075/paymentrequest.proto b/bip-0075/paymentrequest.proto
index 5a08192..cb04369 100644
--- a/bip-0075/paymentrequest.proto
+++ b/bip-0075/paymentrequest.proto
@@ -70,7 +70,7 @@ message ProtocolMessage {
required ProtocolMessageType message_type = 3; // Message Type of serialized_message
required bytes serialized_message = 4; // Serialized Payment Protocol Message
optional string status_message = 5; // Human-readable Payment Protocol status message
- optional bytes identifier = 6; // Unique key to identify this entire exchange on the server. SHA256 of initial serialized InvoiceRequest SHOULD be used by default
+ required bytes identifier = 6; // Unique key to identify this entire exchange on the server. SHA256 of initial serialized InvoiceRequest SHOULD be used by default
}
message EncryptedProtocolMessage {
@@ -81,7 +81,7 @@ message EncryptedProtocolMessage {
required bytes receiver_public_key = 5; // Receiver's DER-encoded EC Public Key
required bytes sender_public_key = 6; // Sender's DER-encoded EC Public Key
required uint64 nonce = 7; // Microseconds since epoch
- optional bytes identifier = 8; // Unique key to identify this entire exchange on the server. SHA256 of initial serialized InvoiceRequest SHOULD be used by default
+ required bytes identifier = 8; // Unique key to identify this entire exchange on the server. SHA256 of initial serialized InvoiceRequest SHOULD be used by default
optional string status_message = 9; // Human-readable Payment Protocol status message
optional bytes signature = 10; // Signature over the full EncryptedProtocolMessage with EC Key Belonging to Sender / Receiver, respectively
} \ No newline at end of file