File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def test_api_functions():
44
44
invoice = run_and_print (lambda : client .create_invoice (1 , "USDT" , str (uuid .uuid4 ())))
45
45
wallet = run_and_print (lambda : client .create_wallet ("TRON" , "TRX" , str (uuid .uuid4 ())))
46
46
run_and_print (lambda : client .block_wallet (wallet_uuid = (wallet .uuid if wallet else "123" ))) # Server error (reason unknown)
47
- run_and_print (lambda : client .block_wallet_refund (wallet .address , wallet_uuid = (wallet .uuid if wallet else "123" ))) # Server error (it's ok)
47
+ run_and_print (lambda : client .block_wallet_refund (( wallet .address if wallet else "123" ) , wallet_uuid = (wallet .uuid if wallet else "123" ))) # Server error (it's ok)
48
48
run_and_print (lambda : client .payment_information (invoice_uuid = (invoice .uuid if invoice else "123" )))
49
49
run_and_print (lambda : client .refund ((wallet .address if wallet else "123" ), True , invoice_uuid = (invoice .uuid if invoice else "123" ))) # Server error (looks ok)
50
50
run_and_print (lambda : client .payment_services ())
You can’t perform that action at this time.
0 commit comments