Commit e218ffed authored by linj's avatar linj

add const

parent 34a0fd0c
...@@ -72,6 +72,8 @@ const ( ...@@ -72,6 +72,8 @@ const (
TyLogTokenGenesisTransfer = 321 TyLogTokenGenesisTransfer = 321
// TyLogTokenGenesisDeposit log for token genesis deposit // TyLogTokenGenesisDeposit log for token genesis deposit
TyLogTokenGenesisDeposit = 322 TyLogTokenGenesisDeposit = 322
// TyLogTokenMint log for token mint
TyLogTokenMint = 323
) )
const ( const (
...@@ -82,3 +84,10 @@ const ( ...@@ -82,3 +84,10 @@ const (
// TokenIntroLenLimit token introduction length limit // TokenIntroLenLimit token introduction length limit
TokenIntroLenLimit = 1024 TokenIntroLenLimit = 1024
) )
const (
// CategoryNormal
CategoryNormal = 0 << iota
// CategoryMintSupport support mint
CategoryMintSupport
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment