Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 85c9926

Browse files
committed
remove temporary proof and secret files after use
1 parent 5ebb115 commit 85c9926

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

mpc_demo_infra/client_cli/main.py

+21-17
Original file line numberDiff line numberDiff line change
@@ -56,23 +56,27 @@ async def generate_tlsn_proof(api_key: str, api_secret: str, notary_crt_path: Op
5656
cmd += f" {notary_crt_path}"
5757
logger.info(f"Executing: {cmd}")
5858

59-
process = await asyncio.create_subprocess_shell(
60-
cmd,
61-
cwd=binance_prover_dir,
62-
stdout=asyncio.subprocess.PIPE,
63-
stderr=asyncio.subprocess.PIPE,
64-
)
65-
stdout, stderr = await process.communicate()
66-
if process.returncode != 0:
67-
raise Exception(f"TLSN proof generation failed with return code {process.returncode}, {stdout=}, {stderr=}")
68-
69-
with open(proof_file, "r") as f:
70-
tlsn_proof = f.read()
71-
with open(secret_file, "r") as f_secret:
72-
secret_data = json.load(f_secret)
73-
secret_input = float(secret_data["eth_free"])
74-
nonce = bytes(secret_data["nonce"]).hex()
75-
return tlsn_proof, secret_input, nonce, timestamp
59+
try:
60+
process = await asyncio.create_subprocess_shell(
61+
cmd,
62+
cwd=binance_prover_dir,
63+
stdout=asyncio.subprocess.PIPE,
64+
stderr=asyncio.subprocess.PIPE,
65+
)
66+
stdout, stderr = await process.communicate()
67+
if process.returncode != 0:
68+
raise Exception(f"TLSN proof generation failed with return code {process.returncode}, {stdout=}, {stderr=}")
69+
70+
with open(proof_file, "r") as f:
71+
tlsn_proof = f.read()
72+
with open(secret_file, "r") as f_secret:
73+
secret_data = json.load(f_secret)
74+
secret_input = float(secret_data["eth_free"])
75+
nonce = bytes(secret_data["nonce"]).hex()
76+
return tlsn_proof, secret_input, nonce, timestamp
77+
finally:
78+
proof_file.unlink(missing_ok=True)
79+
secret_file.unlink(missing_ok=True)
7680

7781
async def notarize_and_share_data(eth_address: str, api_key: str, api_secret: str, notary_crt_path: Optional[str]):
7882
logger.info(f"Sharing Binance ETH balance data to MPC parties...")

0 commit comments

Comments
 (0)