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

* add MintAddress to params.proto * ignite scaffold message update-params params:Params --module dao * add dao get and set params * make dao.MsgUpdateParams.Params non-nullable * use GetMintAddress in ante handler * adjust dao e2e test suit for mint address param * change msg creator to authority and set gov module as default in gov proposal * fix staticcheck error * remove depricated config param * fix linter errors Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
14 lines
295 B
Protocol Buffer
14 lines
295 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.dao;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/dao/types";
|
|
|
|
// Params defines the parameters for the module.
|
|
message Params {
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
string mint_address = 1;
|
|
}
|