mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
18 lines
351 B
Protocol Buffer
18 lines
351 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package common;
|
||
|
|
||
|
//----------------------------------------
|
||
|
// Abstract types
|
||
|
|
||
|
// Define these here for compatibility but use tmlibs/common.KVPair.
|
||
|
message KVPair {
|
||
|
bytes key = 1;
|
||
|
bytes value = 2;
|
||
|
}
|
||
|
|
||
|
// Define these here for compatibility but use tmlibs/common.KI64Pair.
|
||
|
message KI64Pair {
|
||
|
bytes key = 1;
|
||
|
int64 value = 2;
|
||
|
}
|