@@ -73,7 +73,7 @@ def test_can_execute_fee_estimation_query(env):
7373 """
7474 wait_for_fee_estimation_service_ready (env )
7575 tx = AccountCreateTransaction ().set_key_without_alias (PrivateKey .generate_ed25519 ()).set_initial_balance (1 )
76- # wait_for_mirror_node_sync()
76+
7777 query = FeeEstimateQuery ().set_transaction (tx )
7878 result = query .execute (env .client )
7979
@@ -87,7 +87,7 @@ def test_can_execute_fee_estimation_query2(env):
8787 """
8888 wait_for_fee_estimation_service_ready (env )
8989 tx = AccountCreateTransaction ().set_key_without_alias (PrivateKey .generate_ed25519 ()).set_initial_balance (1 )
90- # wait_for_mirror_node_sync()
90+
9191 query = FeeEstimateQuery ().set_mode (FeeEstimateMode .STATE ).set_transaction (tx )
9292 result = query .execute (env .client )
9393
@@ -101,7 +101,6 @@ def test__fee_estimation_query_chunk_tx_can_execute(env):
101101 """
102102 wait_for_fee_estimation_service_ready (env )
103103 tx = FileAppendTransaction ().set_file_id (FileId (0 , 0 , 2 )).set_chunk_size (10 ).set_contents ("s" * 33 ) # 4 chunks
104- # wait_for_mirror_node_sync()
105104
106105 tx .freeze_with (env .client )
107106 query = FeeEstimateQuery ().set_mode (FeeEstimateMode .STATE ).set_transaction (tx )
@@ -119,7 +118,6 @@ def test_can_execute_fee_estimation_query_chunk_tx(env):
119118 tx = (
120119 TopicMessageSubmitTransaction ().set_topic_id (TopicId (0 , 0 , 2 )).set_chunk_size (10 ).set_message ("s" * 20 )
121120 ) # 2 chunks
122- # wait_for_mirror_node_sync()
123121
124122 tx .freeze_with (env .client )
125123 query = FeeEstimateQuery ().set_mode (FeeEstimateMode .STATE ).set_transaction (tx )
0 commit comments