We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a46f90 commit a2f5f7bCopy full SHA for a2f5f7b
1 file changed
integrationtest/llm/test_llm_chat.py
@@ -106,8 +106,11 @@ def llm_client():
106
if not funder_key:
107
pytest.skip("PRIVATE_KEY environment variable is not set")
108
109
+ funder = Account.from_key(funder_key)
110
+ print(f"\nFunder account: {funder.address}")
111
+
112
account = Account.create()
- print(f"\nTest account: {account.address}")
113
+ print(f"Test account: {account.address}")
114
115
_fund_account(funder_key, account.address)
116
print("Account funded with ETH and OPG")
0 commit comments