core: fix NEO native contract id
It should be set to -1 as in c# implementation.
This commit is contained in:
parent
ce6bacd51a
commit
c767ac2973
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ type keyWithVotes struct {
|
||||||
|
|
||||||
const (
|
const (
|
||||||
neoSyscallName = "Neo.Native.Tokens.NEO"
|
neoSyscallName = "Neo.Native.Tokens.NEO"
|
||||||
neoContractID = -2
|
neoContractID = -1
|
||||||
// NEOTotalSupply is the total amount of NEO in the system.
|
// NEOTotalSupply is the total amount of NEO in the system.
|
||||||
NEOTotalSupply = 100000000
|
NEOTotalSupply = 100000000
|
||||||
// prefixValidator is a prefix used to store validator's data.
|
// prefixValidator is a prefix used to store validator's data.
|
||||||
|
|
Loading…
Reference in a new issue