@@ -36,7 +36,7 @@ def test_integration_token_reject_transaction_can_execute():
3636
3737 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
3838
39- account_id = receipt .accountId
39+ account_id = receipt .account_id
4040
4141 token1 = create_fungible_token (env )
4242 token2 = create_fungible_token (env )
@@ -116,7 +116,7 @@ def test_integration_token_reject_transaction_can_execute_for_nft():
116116 .set_key (new_account_public_key ).set_initial_balance (Hbar (1 ))
117117 .set_account_memo ("Receiver Account" ).execute (env .client ))
118118 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
119- account_id = receipt .accountId
119+ account_id = receipt .account_id
120120 assert account_id is not None
121121
122122 # Associate the tokens to the new account
@@ -176,7 +176,7 @@ def test_integration_token_reject_transaction_can_execute_for_ft_and_nft_paralle
176176
177177 receipt = AccountCreateTransaction ().set_key (new_account_public_key ).set_initial_balance (Hbar (1 )).set_account_memo ("Receiver Account" ).execute (env .client )
178178 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
179- account_id = receipt .accountId
179+ account_id = receipt .account_id
180180 assert account_id is not None
181181
182182 receipt = (TokenAssociateTransaction ().set_account_id (account_id ).add_token_id (token_id_1 ).add_token_id (token_id_2 ).add_token_id (nft_id_1 ).add_token_id (nft_id_2 )
@@ -235,7 +235,7 @@ def test_token_reject_transaction_fails_with_invalid_signature():
235235
236236 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
237237
238- account_id = receipt .accountId
238+ account_id = receipt .account_id
239239
240240 token1 = create_fungible_token (env )
241241
@@ -302,7 +302,7 @@ def test_integration_token_reject_transaction_fails_with_reference_size_exceeded
302302 )
303303 receipt = account_transaction .execute (env .client )
304304 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
305- account_id = receipt .accountId
305+ account_id = receipt .account_id
306306 assert account_id is not None
307307
308308 # Associate the tokens to the new account
@@ -417,7 +417,7 @@ def test_integration_token_reject_transaction_fails_when_fungible_token_owner_ha
417417
418418 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
419419
420- account_id = receipt .accountId
420+ account_id = receipt .account_id
421421
422422 # Associate the token to the receiver account
423423 token_associate_transaction = TokenAssociateTransaction (
@@ -466,7 +466,7 @@ def test_integration_token_reject_transaction_fails_when_nft_owner_has_no_balanc
466466
467467 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
468468
469- account_id = receipt .accountId
469+ account_id = receipt .account_id
470470
471471 # Create NFT with treasury
472472 nft_token_id = create_nft_token (env )
@@ -532,7 +532,7 @@ def test_token_reject_transaction_fails_with_token_reference_repeated_fungible()
532532
533533 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
534534
535- account_id = receipt .accountId
535+ account_id = receipt .account_id
536536
537537 # Create fungible token with treasury
538538 token_id = create_fungible_token (env )
@@ -592,7 +592,7 @@ def test_token_reject_transaction_fails_with_token_reference_repeated_nft():
592592
593593 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
594594
595- account_id = receipt .accountId
595+ account_id = receipt .account_id
596596
597597 # Create NFT with treasury
598598 nft_token_id = create_nft_token (env )
@@ -682,7 +682,7 @@ def test_integration_token_reject_transaction_fails_when_rejecting_nft_with_toke
682682
683683 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
684684
685- account_id = receipt .accountId
685+ account_id = receipt .account_id
686686
687687 # Associate the NFT to the receiver
688688 nft_associate_transaction = TokenAssociateTransaction (
@@ -755,7 +755,7 @@ def test_token_reject_transaction_fails_with_nft_token_frozen():
755755
756756 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
757757
758- account_id = receipt .accountId
758+ account_id = receipt .account_id
759759
760760 # Associate the NFT to the receiver
761761 associate_transaction = TokenAssociateTransaction (
@@ -822,7 +822,7 @@ def test_token_reject_transaction_fails_with_fungible_token_frozen():
822822
823823 assert receipt .status == ResponseCode .SUCCESS , f"Account creation failed with status: { ResponseCode (receipt .status ).name } "
824824
825- account_id = receipt .accountId
825+ account_id = receipt .account_id
826826
827827 # Create fungible token with treasury
828828 token_id = create_fungible_token (env )
@@ -884,7 +884,7 @@ def test_token_reject_transaction_receiver_sig_required_nft():
884884 .set_receiver_signature_required (True ).set_account_memo ("Treasury Account" )
885885 .freeze_with (env .client ).sign (treasury_private_key ).execute (env .client ))
886886 assert receipt .status == ResponseCode .SUCCESS , f"Treasury account creation failed with status: { ResponseCode (receipt .status ).name } "
887- treasury_id = receipt .accountId
887+ treasury_id = receipt .account_id
888888
889889 # Create a new NFT token with a custom treasury account that requires receiver signatures
890890 # Pass lambda functions to create_nft_token to configure the treasury account and sign with its key
@@ -902,7 +902,7 @@ def test_token_reject_transaction_receiver_sig_required_nft():
902902
903903 receipt = (AccountCreateTransaction ().set_key (receiver_public_key ).set_initial_balance (Hbar (1 )).set_account_memo ("Receiver Account" ).execute (env .client ))
904904 assert receipt .status == ResponseCode .SUCCESS , f"Receiver account creation failed with status: { ResponseCode (receipt .status ).name } "
905- receiver_id = receipt .accountId
905+ receiver_id = receipt .account_id
906906
907907 associate_transaction = TokenAssociateTransaction (
908908 account_id = receiver_id ,
@@ -950,7 +950,7 @@ def test_token_reject_transaction_receiver_sig_required_fungible():
950950 )
951951 receipt = transaction .freeze_with (env .client ).sign (treasury_private_key ).execute (env .client )
952952 assert receipt .status == ResponseCode .SUCCESS , f"Treasury account creation failed with status: { ResponseCode (receipt .status ).name } "
953- treasury_id = receipt .accountId
953+ treasury_id = receipt .account_id
954954
955955 # Create a fungible token with a custom treasury account that requires receiver signatures
956956 # Pass lambda functions to create_fungible_token to configure the treasury account and sign with its key
@@ -970,7 +970,7 @@ def test_token_reject_transaction_receiver_sig_required_fungible():
970970 )
971971 receipt = receiver_transaction .execute (env .client )
972972 assert receipt .status == ResponseCode .SUCCESS , f"Receiver account creation failed with status: { ResponseCode (receipt .status ).name } "
973- receiver_id = receipt .accountId
973+ receiver_id = receipt .account_id
974974
975975 # Associate the token to the receiver
976976 associate_transaction = TokenAssociateTransaction (
0 commit comments