github.com/InjectiveLabs/sdk-go@v1.53.0/chain/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  }