mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-05-07 23:10:32 +00:00
implemented smart contract utility function FromAddress (#88)
* implemented smart contract utility function FromAddress * bumped version
This commit is contained in:
parent
4bd4635e49
commit
311313f2ff
6 changed files with 35 additions and 7 deletions
6
pkg/vm/api/util/util.go
Normal file
6
pkg/vm/api/util/util.go
Normal file
|
@ -0,0 +1,6 @@
|
|||
package util
|
||||
|
||||
// FromAddress returns the underlying bytes from the given address string.
|
||||
func FromAddress(address string) []byte {
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue