Skip to content

Commit 151ce93

Browse files
committed
fix tests
1 parent eaea78d commit 151ce93

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

chia/_tests/wallet/rpc/test_wallet_rpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3138,8 +3138,8 @@ async def test_cat_spend_run_tail(wallet_rpc_environment: WalletRpcTestEnvironme
31383138
amount=uint64(0),
31393139
inner_address=encode_puzzle_hash(our_ph, "txch"),
31403140
extra_delta=str(tx_amount * -1),
3141-
tail_reveal=b"",
3142-
tail_solution=b"",
3141+
tail_reveal=b"\x80",
3142+
tail_solution=b"\x80",
31433143
push=True,
31443144
),
31453145
tx_config=DEFAULT_TX_CONFIG,

chia/_tests/wallet/vc_wallet/test_vc_wallet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -580,8 +580,8 @@ async def test_vc_lifecycle(wallet_environments: WalletTestFramework) -> None:
580580
inner_address=wallet_1_addr,
581581
fee=uint64(0),
582582
extra_delta=str(-50),
583-
tail_reveal=b"",
584-
tail_solution=b"",
583+
tail_reveal=b"\x80",
584+
tail_solution=b"\x80",
585585
push=True,
586586
),
587587
tx_config=wallet_environments.tx_config,

0 commit comments

Comments
 (0)