implemented smart contract utility function FromAddress (#88)

* implemented smart contract utility function FromAddress

* bumped version
This commit is contained in:
Anthony De Meulemeester 2018-07-02 15:02:00 +02:00 committed by GitHub
parent 4bd4635e49
commit 311313f2ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 35 additions and 7 deletions

6
pkg/vm/api/util/util.go Normal file
View file

@ -0,0 +1,6 @@
package util
// FromAddress returns the underlying bytes from the given address string.
func FromAddress(address string) []byte {
return nil
}