mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-07-02 19:02:29 +00:00

In the beginning we wanted to send the raw transaction to elements, but what we ended up doing is to send the command like: ``` "reissueasset assetID amount" ``` to elements-cli/elements-rpc. Closes #226 Signed-off-by: Julian Strobl <jmastr@mailbox.org>
15 lines
298 B
Protocol Buffer
15 lines
298 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 command = 2;
|
|
string txID = 3;
|
|
int64 blockHeight = 4;
|
|
int64 firstIncludedPop = 5;
|
|
int64 lastIncludedPop = 6;
|
|
}
|