We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e3eed commit f33b30aCopy full SHA for f33b30a
plugins/acp/acp_plugin_gamesdk/acp_token.py
@@ -95,6 +95,7 @@ def get_contract_address(self) -> str:
95
def validate_transaction(self, hash_value: str) -> object:
96
try:
97
response = requests.post(f"{self.acp_base_url}/acp-agent-wallets/trx-result", json={"userOpHash": hash_value})
98
+ print(f"validate_transaction response status code: {response.status_code}")
99
return response.json()
100
except Exception as error:
101
raise Exception(f"Failed to get job_id {error}")
0 commit comments