Skip to content

Commit 4073429

Browse files
committed
chore: remove node sync commnets
Signed-off-by: Manish Dait <daitmanish88@gmail.com>
1 parent 08ccd90 commit 4073429

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

tests/integration/fee_estimate_query_e2e_test.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)