mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-03-02 23:43:49 +00:00
7 lines
145 B
Go
7 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
|
||
|
}
|