[#47] innerring: Increase minimal extra fee on contract invocations

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-01-20 16:11:43 +03:00 committed by Alex Vanin
parent 8865252daf
commit 0745267411
4 changed files with 7 additions and 14 deletions

View file

@ -24,7 +24,6 @@ type (
const (
putContainerMethod = "put"
deleteContainerMethod = "delete"
listContainersMethod = "list"
)
// RegisterContainer invokes Put method.
@ -33,7 +32,7 @@ func RegisterContainer(cli *client.Client, con util.Uint160, p *ContainerParams)
return client.ErrNilClient
}
return cli.Invoke(con, 5*extraFee, putContainerMethod,
return cli.Invoke(con, 3*extraFee, putContainerMethod,
p.Container,
p.Signature,
p.Key.Bytes(),