From c4a4a84515211ff79dfcb427f3b2d64f5ffef1d6 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 26 Oct 2020 22:12:56 +0300 Subject: [PATCH] native: lower voting fee Follow neo-project/neo#2010. --- pkg/core/native/native_neo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/core/native/native_neo.go b/pkg/core/native/native_neo.go index 941c33899..adef9e3b3 100644 --- a/pkg/core/native/native_neo.go +++ b/pkg/core/native/native_neo.go @@ -137,7 +137,7 @@ func newNEO() *NEO { desc = newDescriptor("vote", smartcontract.BoolType, manifest.NewParameter("account", smartcontract.Hash160Type), manifest.NewParameter("pubkey", smartcontract.PublicKeyType)) - md = newMethodAndPrice(n.vote, 500000000, smartcontract.AllowModifyStates) + md = newMethodAndPrice(n.vote, 5000000, smartcontract.AllowModifyStates) n.AddMethod(md, desc, false) desc = newDescriptor("getCandidates", smartcontract.ArrayType)