2018-08-20 08:59:35 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
// FromAddress is an utility function that converts an NEO address to its hash.
|
|
|
|
func FromAddress(address string) []byte {
|
|
|
|
return nil
|
|
|
|
}
|
2018-08-23 08:17:42 +00:00
|
|
|
|
2018-08-23 17:44:17 +00:00
|
|
|
// Equals compares a with b and will return true whether a and b
|
2018-08-23 08:17:42 +00:00
|
|
|
// are equal.
|
2018-08-23 17:44:17 +00:00
|
|
|
func Equals(a, b interface{}) bool {
|
2018-08-23 08:17:42 +00:00
|
|
|
return false
|
|
|
|
}
|