mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-02 04:06:38 +00:00
11 lines
330 B
Go
11 lines
330 B
Go
package dao
|
|
|
|
func GetReissuanceCommand(asset_id string, BlockHeight int64) string {
|
|
return "reissueasset " + asset_id + " 99869000000"
|
|
}
|
|
|
|
func IsValidReissuanceCommand(reissuance_str string, asset_id string, BlockHeight uint64) bool {
|
|
expected := "reissueasset " + asset_id + " 99869000000"
|
|
return reissuance_str == expected
|
|
}
|