Skip to content

Commit

Permalink
fix def params
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowv0vshadow committed Jun 4, 2024
1 parent 6ad8bf9 commit 70f5030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrumx/server/session/session_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1095,8 +1095,8 @@ async def make_transfer_inputs(result, inputs_atomicals, tx_inputs, make_type) -
result[_i.txin_index].append(_data)
return result

async def make_transfer_outputs(result, output: Dict) -> Dict[int, List[Dict]]:
for k, v in blueprint_builder.ft_output_blueprint.outputs.items():
async def make_transfer_outputs(result, outputs: Dict) -> Dict[int, List[Dict]]:
for k, v in outputs:
for _atomical_id, _output in v["atomicals"].items():
_compact_atomical_id = location_id_bytes_to_compact(_atomical_id)
_data = {
Expand Down

0 comments on commit 70f5030

Please sign in to comment.