mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-05 21:56:45 +00:00
13 lines
236 B
Protocol Buffer
13 lines
236 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.dao;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/dao/types";
|
|
|
|
message Reissuance {
|
|
|
|
string proposer = 1;
|
|
string rawtx = 2;
|
|
string txId = 3;
|
|
uint64 blockHeight = 4;
|
|
}
|