forked from TrueCloudLab/frostfs-node
[#171] Increase extra gas on ApprovePeer
method
With latest changes in neo's execution costs, we need more gas to add storage node to netmap. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
eb13322bf0
commit
b59af19dff
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ func ApprovePeer(cli *client.Client, con util.Uint160, peer []byte) error {
|
|||
return client.ErrNilClient
|
||||
}
|
||||
|
||||
return cli.Invoke(con, feeHalfGas, approvePeerMethod, peer)
|
||||
return cli.Invoke(con, feeOneGas, approvePeerMethod, peer)
|
||||
}
|
||||
|
||||
// UpdatePeerState invokes addPeer method.
|
||||
|
|
Loading…
Reference in a new issue