Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Quexington committed Jan 14, 2025
1 parent 4518fb6 commit 98f916f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chia/rpc/wallet_rpc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4319,7 +4319,8 @@ async def _generate_signed_transaction() -> EndpointResult:
action_scope,
fee,
coins=coins,
memos=[memos_0] + [output.memos for output in additional_outputs if output.memos is not None],
memos=[memos_0]
+ [output.memos if output.memos is not None else [] for output in additional_outputs],
extra_conditions=(
*extra_conditions,
*(
Expand Down

0 comments on commit 98f916f

Please sign in to comment.