native/neo: add getAccountState method, close #1975

This commit is contained in:
Evgeniy Stratonikov 2021-05-25 17:54:57 +03:00
parent df0be2e855
commit 233996eec0
5 changed files with 63 additions and 1 deletions

View file

@ -316,7 +316,7 @@ func canConvert(s string) bool {
s = s[len(interopPrefix):]
return s != "/iterator.Iterator" && s != "/storage.Context" &&
s != "/native/ledger.Block" && s != "/native/ledger.Transaction" &&
s != "/native/management.Contract"
s != "/native/management.Contract" && s != "/native/neo.AccountState"
}
return true
}