Skip to content

Commit 51ec259

Browse files
committed
Hack in the old interface for send_transaction_multi
1 parent a4e0375 commit 51ec259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/_tests/wallet/rpc/test_wallet_rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ async def test_send_transaction_multi(wallet_rpc_environment: WalletRpcTestEnvir
10041004
send_tx_res: TransactionRecord = (
10051005
await client.send_transaction_multi(
10061006
1,
1007-
[output.to_json_dict() for output in outputs],
1007+
[{**output.to_json_dict(), "puzzle_hash": output.puzzle_hash} for output in outputs],
10081008
DEFAULT_TX_CONFIG,
10091009
coins=select_coins_response.coins,
10101010
fee=amount_fee,

0 commit comments

Comments
 (0)