2018-08-20 10:59:35 +02: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 10:17:42 +02:00
|
|
|
|
2018-08-23 19:44:17 +02:00
|
|
|
// Equals compares a with b and will return true whether a and b
|
2018-08-23 10:17:42 +02:00
|
|
|
// are equal.
|
2018-08-23 19:44:17 +02:00
|
|
|
func Equals(a, b interface{}) bool {
|
2018-08-23 10:17:42 +02:00
|
|
|
return false
|
|
|
|
}
|