forked from TrueCloudLab/frostfs-node
[#47] innerring: Increase minimal extra fee on contract invocations
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
8865252daf
commit
0745267411
4 changed files with 7 additions and 14 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue