compiler/interop: fix contract.GetCallFlags
This commit is contained in:
parent
47ef3b41fa
commit
dcbfe856cd
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ func CreateStandardAccount(pub interop.PublicKey) []byte {
|
||||||
// GetCallFlags returns calling flags which execution context was created with.
|
// GetCallFlags returns calling flags which execution context was created with.
|
||||||
// This function uses `System.Contract.GetCallFlags` syscall.
|
// This function uses `System.Contract.GetCallFlags` syscall.
|
||||||
func GetCallFlags() CallFlag {
|
func GetCallFlags() CallFlag {
|
||||||
return neogointernal.Syscall0("System.Contract.GetFlags").(CallFlag)
|
return neogointernal.Syscall0("System.Contract.GetCallFlags").(CallFlag)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Call executes previously deployed blockchain contract with specified hash
|
// Call executes previously deployed blockchain contract with specified hash
|
||||||
|
|
Loading…
Reference in a new issue