File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ def test_historical_balances(imported_wallet):
171171 assert balances
172172 assert all (balance .amount > 0 for balance in balances )
173173
174+
174175@pytest .mark .e2e
175176def test_invoke_contract_with_transaction_receipt (imported_wallet ):
176177 """Test invoke contract with transaction receipt."""
@@ -183,7 +184,7 @@ def test_invoke_contract_with_transaction_receipt(imported_wallet):
183184 invocation = imported_wallet .invoke_contract (
184185 contract_address = "0x036CbD53842c5426634e7929541eC2318f3dCF7e" ,
185186 method = "transfer" ,
186- args = {"to" : destination_wallet .default_address .address_id , "value" : "1" }
187+ args = {"to" : destination_wallet .default_address .address_id , "value" : "1" },
187188 )
188189
189190 invocation .wait ()
@@ -202,6 +203,7 @@ def test_invoke_contract_with_transaction_receipt(imported_wallet):
202203 assert transaction_log .topics [1 ] == f"from: { imported_wallet .default_address .address_id } "
203204 assert transaction_log .topics [2 ] == f"to: { destination_wallet .default_address .address_id } "
204205
206+
205207@pytest .mark .skip (reason = "Gasless transfers have unpredictable latency" )
206208def test_gasless_transfer (imported_wallet ):
207209 """Test gasless transfer."""
Original file line number Diff line number Diff line change @@ -891,6 +891,7 @@ def test_wallet_import_from_mnemonic_invalid_phrase():
891891 with pytest .raises (ValueError , match = "Invalid BIP-39 mnemonic seed phrase" ):
892892 Wallet .import_wallet (MnemonicSeedPhrase ("invalid mnemonic phrase" ))
893893
894+
894895@patch ("cdp.Cdp.use_server_signer" , False )
895896@patch ("cdp.Cdp.api_clients" )
896897@patch ("cdp.wallet.Account" )
You can’t perform that action at this time.
0 commit comments