forked from agorise/c-ipfs
12 lines
223 B
Protocol Buffer
12 lines
223 B
Protocol Buffer
|
message JournalEntry {
|
||
|
int32 timestamp = 1;
|
||
|
string hash = 2;
|
||
|
bool pin = 3;
|
||
|
}
|
||
|
|
||
|
message JournalMessage {
|
||
|
int32 current_epoch = 1;
|
||
|
int32 start_epoch = 2;
|
||
|
int32 end_epoch = 3;
|
||
|
repeated JournalEntry journal_entries = 4;
|
||
|
}
|