Merge pull request #1221 from nspcc-dev/neo3/interop/post-preview2_adjustment3

interop: post-preview2 adjustment, part 3
This commit is contained in:
Roman Khimov 2020-07-23 20:35:53 +03:00 committed by GitHub
commit d8a1c3de46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 80 additions and 24 deletions

View file

@ -35,6 +35,8 @@ var syscalls = map[string]map[string]Syscall{
"ECDSASecp256k1CheckMultisig": {"Neo.Crypto.CheckMultisigWithECDsaSecp256k1", false},
"ECDsaSecp256r1Verify": {"Neo.Crypto.VerifyWithECDsaSecp256r1", false},
"ECDSASecp256r1CheckMultisig": {"Neo.Crypto.CheckMultisigWithECDsaSecp256r1", false},
"RIPEMD160": {"Neo.Crypto.RIPEMD160", false},
"SHA256": {"Neo.Crypto.SHA256", false},
},
"enumerator": {
"Concat": {"System.Enumerator.Concat", false},
@ -78,5 +80,6 @@ var syscalls = map[string]map[string]Syscall{
"GetContext": {"System.Storage.GetContext", false},
"GetReadOnlyContext": {"System.Storage.GetReadOnlyContext", false},
"Put": {"System.Storage.Put", false},
"PutEx": {"System.Storage.PutEx", false},
},
}