mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 19:42:23 +00:00
core: fix Managment destroy price
Too expensive.
This commit is contained in:
parent
203f8adc9d
commit
a65544aab1
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ func newManagement() *Management {
|
|||
m.AddMethod(md, desc)
|
||||
|
||||
desc = newDescriptor("destroy", smartcontract.VoidType)
|
||||
md = newMethodAndPrice(m.destroy, 10000000, smartcontract.WriteStates)
|
||||
md = newMethodAndPrice(m.destroy, 1000000, smartcontract.WriteStates)
|
||||
m.AddMethod(md, desc)
|
||||
|
||||
return m
|
||||
|
|
Loading…
Reference in a new issue