mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 13:58:05 +00:00
14 lines
291 B
Go
14 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
|
||
|
}
|