mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-12 21:10:36 +00:00
f14833893c
Imported from CityOfZion/neo-storm (c0ee185a7cfd2c222fb7b4c8ca19885844d53855).
12 lines
290 B
Go
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
|
|
}
|