chore: fix some minor issues in comments (#1960)

Signed-off-by: gopherorg <gopherworld@icloud.com>
This commit is contained in:
gopherorg
2025-07-11 09:30:02 +08:00
committed by GitHub
parent 5384df39a3
commit 0be9b7769d
2 changed files with 1 additions and 3 deletions

View File

@@ -409,7 +409,6 @@ func TestGetBalance(t *testing.T) {
assert.NoError(t, err, "GetBalance should not error")
}
// TestGetTradeBalance API endpoint test
func TestGetDepositMethods(t *testing.T) {
t.Parallel()
sharedtestvalues.SkipTestIfCredentialsUnset(t, k)
@@ -716,7 +715,6 @@ func TestCancelExchangeOrder(t *testing.T) {
}
}
// TestCancelExchangeOrder wrapper test
func TestCancelBatchExchangeOrder(t *testing.T) {
t.Parallel()
sharedtestvalues.SkipTestIfCannotManipulateOrders(t, k, canManipulateRealOrders)

View File

@@ -898,7 +898,7 @@ func (k *Kraken) handleSubResps(s *subscription.Subscription, resps [][]byte, op
return errs
}
// getSubErrResp calls getRespErr and if there's no error from that ensures the status matches the sub operation
// getSubRespErr calls getRespErr and if there's no error from that ensures the status matches the sub operation
func (k *Kraken) getSubRespErr(resp []byte, op string) error {
if err := k.getRespErr(resp); err != nil {
return err