Skip to content

Commit 47753d1

Browse files
authored
Merge pull request #516 from ccxt/update-docs-2
chore: several fixes
2 parents 1439850 + 948c5be commit 47753d1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

php-binance-api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ class API
7373

7474
public $headers = [];
7575

76-
private $SPOT_ORDER_PREFIX = "x-HNA2TXFJ";
77-
private $CONTRACT_ORDER_PREFIX = "x-Cb7ytekJ";
76+
private $SPOT_ORDER_PREFIX = "x-B3AUXNYV";
77+
private $CONTRACT_ORDER_PREFIX = "x-ftGmvgAN";
7878

7979
/**
8080
* Constructor for the class,
@@ -5674,7 +5674,7 @@ public function futuresReduceMargin(string $symbol, string $amount, $positionSid
56745674
* @property int $weight 5
56755675
*
56765676
* @param string $symbol (optional) market symbol (e.g. ETHUSDT)
5677-
* @param array $params (optional) an array of additional parameters that the API endpoint allows
5677+
* @param array $params (optional) an array of additional parameters that the API endpoint afllows
56785678
* - @param int $params['recvWindow'] (optional) the time in milliseconds to wait for the response
56795679
* @param string $api_version (optional) API version, "v2" or "v3" (default is v3)
56805680
*

tests/BinanceLiveTests.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ public function setUp(): void {
7070
private $quoteId = 'testQuoteId';
7171
private $timeInForce = 'GTC';
7272

73-
private $SPOT_ORDER_PREFIX = "x-HNA2TXFJ";
74-
private $CONTRACT_ORDER_PREFIX = "x-Cb7ytekJ";
73+
private $SPOT_ORDER_PREFIX = "x-B3AUXNYV";
74+
private $CONTRACT_ORDER_PREFIX = "x-ftGmvgAN";
7575

7676
public function testPricesSpot()
7777
{

tests/BinanceStaticTests.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ class BinanceStaticTests extends TestCase
2828
public static $capturedBody = null;
2929
private MockBinanceAPI $binance;
3030

31-
private $SPOT_ORDER_PREFIX = "x-HNA2TXFJ";
32-
private $CONTRACT_ORDER_PREFIX = "x-Cb7ytekJ";
31+
private $SPOT_ORDER_PREFIX = "x-B3AUXNYV";
32+
private $CONTRACT_ORDER_PREFIX = "x-ftGmvgAN";
3333

3434
// Default values for the tests
3535
private $symbol = 'ETHUSDT';

0 commit comments

Comments
 (0)