Skip to content

Commit f33b30a

Browse files
Printing out the validate transaction response status code
1 parent 07e3eed commit f33b30a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

plugins/acp/acp_plugin_gamesdk/acp_token.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def get_contract_address(self) -> str:
9595
def validate_transaction(self, hash_value: str) -> object:
9696
try:
9797
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}")
9899
return response.json()
99100
except Exception as error:
100101
raise Exception(f"Failed to get job_id {error}")

0 commit comments

Comments
 (0)