Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-04-29 16:53:54 +03:00 committed by Alex Vanin
parent 5a167f3991
commit 94a1947482

View file

@ -81,7 +81,7 @@ func (w *Wrapper) EigenTrustIterations() (uint64, error) {
return iterations, nil return iterations, nil
} }
// InnerRingCandidateFee returns global configuration value of fee payed by // InnerRingCandidateFee returns global configuration value of fee paid by
// node to be in inner ring candidates list. // node to be in inner ring candidates list.
func (w *Wrapper) InnerRingCandidateFee() (uint64, error) { func (w *Wrapper) InnerRingCandidateFee() (uint64, error) {
fee, err := w.readUInt64Config(irCandidateFeeConfig) fee, err := w.readUInt64Config(irCandidateFeeConfig)
@ -92,7 +92,7 @@ func (w *Wrapper) InnerRingCandidateFee() (uint64, error) {
return fee, nil return fee, nil
} }
// WithdrawFee returns global configuration value of fee payed by user to // WithdrawFee returns global configuration value of fee paid by user to
// withdraw assets from NeoFS contract. // withdraw assets from NeoFS contract.
func (w *Wrapper) WithdrawFee() (uint64, error) { func (w *Wrapper) WithdrawFee() (uint64, error) {
fee, err := w.readUInt64Config(withdrawFeeConfig) fee, err := w.readUInt64Config(withdrawFeeConfig)