mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-24 23:12:30 +00:00

* ignite scaffold type challenge initiator challenger challangee result description --module dao * add height to challenge * implement challenge store * rename challenge result to success --------- Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
15 lines
289 B
Protocol Buffer
15 lines
289 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 challangee = 3;
|
|
uint64 height = 4;
|
|
bool success = 5;
|
|
string description = 6;
|
|
}
|