native: fix typo in comments
Signed-off-by: Evgeniy Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
a7722f0fa5
commit
d2e8254848
1 changed files with 2 additions and 2 deletions
|
@ -174,8 +174,8 @@ func (c *nep17TokenNative) updateAccBalance(ic *interop.Context, acc util.Uint16
|
||||||
}
|
}
|
||||||
si = state.StorageItem{}
|
si = state.StorageItem{}
|
||||||
} else if amount.Sign() == 0 && requiredBalance != nil {
|
} else if amount.Sign() == 0 && requiredBalance != nil {
|
||||||
// If amount == 0 then it's either a roundtrip or an empty transfer. In
|
// If amount == 0 then it's either a round trip or an empty transfer. In
|
||||||
// case of a roundtrip account's balance may still be less than actual
|
// case of a round trip account's balance may still be less than actual
|
||||||
// transfer's amount, so we need to check it. Other cases are handled by
|
// transfer's amount, so we need to check it. Other cases are handled by
|
||||||
// `incBalance` method.
|
// `incBalance` method.
|
||||||
balance, err := c.balFromBytes(&si)
|
balance, err := c.balFromBytes(&si)
|
||||||
|
|
Loading…
Reference in a new issue