github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/app/types/code.go (about) 1 package types 2 3 // ---------------------------------------------------------------------------- 4 // Code 5 // ---------------------------------------------------------------------------- 6 7 // Code is account Code type alias 8 type Code []byte 9 10 func (c Code) String() string { 11 return string(c) 12 }