mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
4249674ddc
On many occassions we can determine at compile-time if contract config lacks some properties it needs. This includes all native contract invocations through stdlib, as both hashes and methods are known at compile-time there. Signed-off-by: Evgeniy Stratonikov <evgeniy@nspcc.ru>
13 lines
291 B
Go
13 lines
291 B
Go
package runh
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop"
|
|
|
|
// RuntimeHash possibly returns some hash at runtime.
|
|
func RuntimeHash() interop.Hash160 {
|
|
return nil
|
|
}
|
|
|
|
// RuntimeHashArgs possibly returns some hash at runtime.
|
|
func RuntimeHashArgs(s string) interop.Hash160 {
|
|
return nil
|
|
}
|