forked from TrueCloudLab/neoneo-go
311313f2ff
* implemented smart contract utility function FromAddress * bumped version
6 lines
145 B
Go
6 lines
145 B
Go
package util
|
|
|
|
// FromAddress returns the underlying bytes from the given address string.
|
|
func FromAddress(address string) []byte {
|
|
return nil
|
|
}
|