@@ -56,23 +56,27 @@ async def generate_tlsn_proof(api_key: str, api_secret: str, notary_crt_path: Op
56
56
cmd += f" { notary_crt_path } "
57
57
logger .info (f"Executing: { cmd } " )
58
58
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 )
76
80
77
81
async def notarize_and_share_data (eth_address : str , api_key : str , api_secret : str , notary_crt_path : Optional [str ]):
78
82
logger .info (f"Sharing Binance ETH balance data to MPC parties..." )
0 commit comments