File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -300,15 +300,15 @@ def get_transaction(ctx: Context, id: str) -> dict:
300300 return _get_resource (ctx , f"{ PATH_TRANSACTIONS } /{ id } " , key = "transaction" )
301301
302302
303- def get_transaction_metadata (ctx : Context , id : str ) -> dict :
303+ def get_transaction_metadata (ctx : Context , id : str ) -> list :
304304 return _get_collection (ctx , f"{ PATH_TRANSACTIONS } /{ id } /metadata" )
305305
306306
307307def list_transactions (ctx : Context ) -> list :
308308 return _get_collection (ctx , PATH_TRANSACTIONS , key = "transactions" )
309309
310310
311- def get_transaction_problems (ctx : Context , id : str ) -> dict :
311+ def get_transaction_problems (ctx : Context , id : str ) -> list :
312312 return _get_collection (ctx , f"{ PATH_TRANSACTIONS } /{ id } /problems" )
313313
314314
You can’t perform that action at this time.
0 commit comments