neo-go/interop/util/util.go
Anthony De Meulemeester f14833893c CityOfZion/neo-storm#17 Implemented util.CompareBytes (CityOfZion/neo-storm#21)
Imported from CityOfZion/neo-storm (c0ee185a7cfd2c222fb7b4c8ca19885844d53855).
2019-08-14 19:14:05 +03:00

12 lines
290 B
Go

package util
// FromAddress is an utility function that converts an NEO address to its hash.
func FromAddress(address string) []byte {
return nil
}
// CompareBytes compares a with b and will return true whether a and b
// are equal.
func CompareBytes(a, b []byte) bool {
return false
}