mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-13 01:26:39 +00:00

* added InitPoP message * added getChallenge query to inspect challenges * adjusted towards a unique block height identification unit: int64, not uint64 * added challenge param finished to identify challenges that weren't completed but will be part of re-issuance. Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
15 lines
283 B
Protocol Buffer
15 lines
283 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.dao;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/dao/types";
|
|
|
|
message Challenge {
|
|
|
|
string initiator = 1;
|
|
string challenger = 2;
|
|
string challengee = 3;
|
|
int64 height = 4;
|
|
bool success = 5;
|
|
bool finished = 6;
|
|
}
|