forked from TrueCloudLab/frostfs-api-go
Fix SetBalance setter
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
c214d4d763
commit
08d3debc3a
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ func (br *BalanceResponseBody) GetBalance() *Decimal {
|
||||||
|
|
||||||
func (br *BalanceResponseBody) SetBalance(v *Decimal) {
|
func (br *BalanceResponseBody) SetBalance(v *Decimal) {
|
||||||
if br != nil {
|
if br != nil {
|
||||||
br.SetBalance(v)
|
br.bal = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue