Use the balance as the max_amount

This commit is contained in:
Alfred Kamanda 2024-08-27 16:10:43 +03:00
parent 8d9aaeedbc
commit 2b10f6023f
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -499,8 +499,17 @@ func (h *Handlers) ResetTransactionAmount(ctx context.Context, sym string, input
func (h *Handlers) MaxAmount(ctx context.Context, sym string, input []byte) (resource.Result, error) {
res := resource.Result{}
// mimic a max amount
res.Content = "10.00"
accountData, err := h.accountFileHandler.ReadAccountData()
if err != nil {
return res, err
}
balance, err := server.CheckBalance(accountData["PublicKey"])
if err != nil {
return res, nil
}
res.Content = balance
return res, nil
}