include labels to define the symbol and balance while selecting a voucher

This commit is contained in:
Alfred Kamanda 2024-11-21 15:15:15 +03:00
parent 8925e26c4c
commit 07df450b3c
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -1570,7 +1570,7 @@ func (h *Handlers) ViewVoucher(ctx context.Context, sym string, input []byte) (r
}
res.FlagReset = append(res.FlagReset, flag_incorrect_voucher)
res.Content = fmt.Sprintf("%s\n%s", metadata.TokenSymbol, metadata.Balance)
res.Content = fmt.Sprintf("Symbol: %s\nBalance: %s", metadata.TokenSymbol, metadata.Balance)
return res, nil
}