Skip to content

Commit

Permalink
rename to MarginXClient
Browse files Browse the repository at this point in the history
  • Loading branch information
zakir-code committed Oct 11, 2023
1 parent 9b911d1 commit acfde0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fxsdk/client/marginx.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
QueryPairFundingRatesReq, QueryOrderbookReq, QueryMarkPriceReq


class MxClient(Client):
class MarginXClient(Client):

def __init__(self, url: str = 'localhost:9090'):
super().__init__(url)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_mx_query.py → tests/test_marginx_query.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import unittest

from fxsdk.client.marginx import MxClient
from fxsdk.client.marginx import MarginXClient

grpc_cli = MxClient('localhost:9090')
grpc_cli = MarginXClient('localhost:9090')

pair_id = 'btc:cusd'

Expand Down

0 comments on commit acfde0b

Please sign in to comment.