mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-03-01 19:30:24 +00:00
6 lines
145 B
Go
6 lines
145 B
Go
package runtime
|
|
|
|
// CheckWitness verifies if the given hash is the invoker of the contract.
|
|
func CheckWitness(hash []byte) bool {
|
|
return true
|
|
}
|