Skip to content
Snippets Groups Projects
Commit 6d42511d authored by Zdravko Iliev's avatar Zdravko Iliev
Browse files

reorder ipfs proto

parent 0e32980a
No related branches found
No related tags found
1 merge request!85Resolve "[Document Sealing] Add document proto buffers"
Pipeline #52458 passed
......@@ -21,10 +21,10 @@ export interface IpfsContentData {
}
export interface IpfsDocumentContentData {
ipnsKeyId?: string;
cid?: string;
key: string;
head: string;
key: string;
cid?: string;
ipnsKeyId?: string;
}
export interface IpfsAttachmentData {
......
......@@ -23,10 +23,10 @@ message Recipients_V1 {
}
message IpfsContentData_V1 {
string cid = 1;
string key = 2;
string head = 3;
string ipnsKeyId = 4;
string head = 1;
string key = 2;
string cid = 3;
string ipnsKeyId = 4;
}
message IpfsAttachmentData_V1 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment