use the correct URL for the pool deposit

This commit is contained in:
Alfred Kamanda 2026-02-07 18:07:52 +03:00
parent 0836a8eeba
commit 71aa5ce7b5
Signed by: Alfred-mk
GPG Key ID: E60B2165A97F4D41

View File

@ -361,7 +361,7 @@ func (as *HTTPAccountService) PoolDeposit(ctx context.Context, amount, from, poo
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", config.TokenTransferURL, bytes.NewBuffer(payloadBytes))
req, err := http.NewRequest("POST", config.PoolDepositURL, bytes.NewBuffer(payloadBytes))
if err != nil {
return nil, err
}