@@ -157,7 +157,7 @@ def test_estimation_for_batch_update_orders_to_create_spot_orders(self):
157157 order_type = "BUY" ,
158158 ),
159159 ]
160- message = composer .MsgBatchUpdateOrders (
160+ message = composer .msg_batch_update_orders (
161161 sender = "senders" ,
162162 derivative_orders_to_create = [],
163163 spot_orders_to_create = orders ,
@@ -194,7 +194,7 @@ def test_estimation_for_batch_update_orders_to_create_derivative_orders(self):
194194 order_type = "SELL" ,
195195 ),
196196 ]
197- message = composer .MsgBatchUpdateOrders (
197+ message = composer .msg_batch_update_orders (
198198 sender = "senders" ,
199199 derivative_orders_to_create = orders ,
200200 spot_orders_to_create = [],
@@ -249,7 +249,7 @@ def test_estimation_for_batch_update_orders_to_create_binary_orders(self, usdt_t
249249 order_type = "SELL" ,
250250 ),
251251 ]
252- message = composer .MsgBatchUpdateOrders (
252+ message = composer .msg_batch_update_orders (
253253 sender = "senders" ,
254254 derivative_orders_to_create = [],
255255 spot_orders_to_create = [],
@@ -284,7 +284,7 @@ def test_estimation_for_batch_update_orders_to_cancel_spot_orders(self):
284284 order_hash = "0x7ee76255d7ca763c56b0eab9828fca89fdd3739645501c8a80f58b62b4f76da5" ,
285285 ),
286286 ]
287- message = composer .MsgBatchUpdateOrders (
287+ message = composer .msg_batch_update_orders (
288288 sender = "senders" ,
289289 derivative_orders_to_create = [],
290290 spot_orders_to_create = [],
@@ -318,7 +318,7 @@ def test_estimation_for_batch_update_orders_to_cancel_derivative_orders(self):
318318 order_hash = "0x7ee76255d7ca763c56b0eab9828fca89fdd3739645501c8a80f58b62b4f76da5" ,
319319 ),
320320 ]
321- message = composer .MsgBatchUpdateOrders (
321+ message = composer .msg_batch_update_orders (
322322 sender = "senders" ,
323323 derivative_orders_to_create = [],
324324 spot_orders_to_create = [],
@@ -352,7 +352,7 @@ def test_estimation_for_batch_update_orders_to_cancel_binary_orders(self):
352352 order_hash = "0x7ee76255d7ca763c56b0eab9828fca89fdd3739645501c8a80f58b62b4f76da5" ,
353353 ),
354354 ]
355- message = composer .MsgBatchUpdateOrders (
355+ message = composer .msg_batch_update_orders (
356356 sender = "senders" ,
357357 derivative_orders_to_create = [],
358358 spot_orders_to_create = [],
@@ -371,7 +371,7 @@ def test_estimation_for_batch_update_orders_to_cancel_all_for_spot_market(self):
371371 market_id = "0x0611780ba69656949525013d947713300f56c37b6175e02f26bffa495c3208fe"
372372 composer = Composer (network = "testnet" )
373373
374- message = composer .MsgBatchUpdateOrders (
374+ message = composer .msg_batch_update_orders (
375375 sender = "senders" ,
376376 subaccount_id = "subaccount_id" ,
377377 spot_market_ids_to_cancel_all = [market_id ],
@@ -391,7 +391,7 @@ def test_estimation_for_batch_update_orders_to_cancel_all_for_derivative_market(
391391 market_id = "0x0611780ba69656949525013d947713300f56c37b6175e02f26bffa495c3208fe"
392392 composer = Composer (network = "testnet" )
393393
394- message = composer .MsgBatchUpdateOrders (
394+ message = composer .msg_batch_update_orders (
395395 sender = "senders" ,
396396 subaccount_id = "subaccount_id" ,
397397 derivative_market_ids_to_cancel_all = [market_id ],
@@ -411,7 +411,7 @@ def test_estimation_for_batch_update_orders_to_cancel_all_for_binary_options_mar
411411 market_id = "0x0611780ba69656949525013d947713300f56c37b6175e02f26bffa495c3208fe"
412412 composer = Composer (network = "testnet" )
413413
414- message = composer .MsgBatchUpdateOrders (
414+ message = composer .msg_batch_update_orders (
415415 sender = "senders" ,
416416 subaccount_id = "subaccount_id" ,
417417 binary_options_market_ids_to_cancel_all = [market_id ],
@@ -440,7 +440,7 @@ def test_estimation_for_exec_message(self):
440440 order_type = "BUY" ,
441441 ),
442442 ]
443- inner_message = composer .MsgBatchUpdateOrders (
443+ inner_message = composer .msg_batch_update_orders (
444444 sender = "senders" ,
445445 derivative_orders_to_create = [],
446446 spot_orders_to_create = orders ,
0 commit comments