From 94a1947482eceb90fcf7de943d05b397bb5c11ff Mon Sep 17 00:00:00 2001
From: Alex Vanin <alexey@nspcc.ru>
Date: Thu, 29 Apr 2021 16:53:54 +0300
Subject: [PATCH] Fix typo

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
---
 pkg/morph/client/netmap/wrapper/config.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pkg/morph/client/netmap/wrapper/config.go b/pkg/morph/client/netmap/wrapper/config.go
index 12298fa26..4900eead1 100644
--- a/pkg/morph/client/netmap/wrapper/config.go
+++ b/pkg/morph/client/netmap/wrapper/config.go
@@ -81,7 +81,7 @@ func (w *Wrapper) EigenTrustIterations() (uint64, error) {
 	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.
 func (w *Wrapper) InnerRingCandidateFee() (uint64, error) {
 	fee, err := w.readUInt64Config(irCandidateFeeConfig)
@@ -92,7 +92,7 @@ func (w *Wrapper) InnerRingCandidateFee() (uint64, error) {
 	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.
 func (w *Wrapper) WithdrawFee() (uint64, error) {
 	fee, err := w.readUInt64Config(withdrawFeeConfig)