mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 19:29:39 +00:00
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.
|
||||
// This function uses `System.Contract.GetCallFlags` syscall.
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue