fix emojies
This commit is contained in:
@@ -29,7 +29,7 @@ async def test_bybit_balance():
|
||||
print("ERROR: Failed to connect to Bybit")
|
||||
return
|
||||
|
||||
print("✓ Connected to Bybit successfully")
|
||||
print("Connected to Bybit successfully")
|
||||
|
||||
# Test get_balance for USDT
|
||||
print("\nTesting get_balance('USDT')...")
|
||||
|
||||
@@ -97,7 +97,7 @@ def debug_interface():
|
||||
print(f"Manual signature: {manual_signature}")
|
||||
|
||||
# Compare parameters
|
||||
print(f"\n📊 COMPARISON:")
|
||||
print(f"\nCOMPARISON:")
|
||||
print(f"symbol: Interface='{interface_params['symbol']}', Manual='{manual_params['symbol']}' {'' if interface_params['symbol'] == manual_params['symbol'] else ''}")
|
||||
print(f"side: Interface='{interface_params['side']}', Manual='{manual_params['side']}' {'' if interface_params['side'] == manual_params['side'] else ''}")
|
||||
print(f"type: Interface='{interface_params['type']}', Manual='{manual_params['type']}' {'' if interface_params['type'] == manual_params['type'] else ''}")
|
||||
@@ -111,7 +111,7 @@ def debug_interface():
|
||||
print(f"timeInForce: Interface='{interface_params['timeInForce']}', Manual=None (EXTRA PARAMETER)")
|
||||
|
||||
# Test without timeInForce
|
||||
print(f"\n🔧 TESTING WITHOUT timeInForce:")
|
||||
print(f"\nTESTING WITHOUT timeInForce:")
|
||||
interface_params_minimal = interface_params.copy()
|
||||
del interface_params_minimal['timeInForce']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user