mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
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
|
|
}
|