Skip to content

Commit d267ad3

Browse files
committed
Forgot push=True
1 parent 2138261 commit d267ad3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

chia/_tests/wallet/cat_wallet/test_trades.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ async def test_cat_trades(
620620

621621
if credential_restricted:
622622
await client_maker.crcat_approve_pending(
623-
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(2)),
623+
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(2), push=True),
624624
wallet_environments.tx_config,
625625
)
626626

@@ -959,7 +959,7 @@ async def assert_trade_tx_number(wallet_node: WalletNode, trade_id: bytes32, num
959959

960960
if credential_restricted:
961961
await client_maker.crcat_approve_pending(
962-
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(6)),
962+
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(6), push=True),
963963
wallet_environments.tx_config,
964964
)
965965

@@ -1196,7 +1196,7 @@ async def assert_trade_tx_number(wallet_node: WalletNode, trade_id: bytes32, num
11961196

11971197
if credential_restricted:
11981198
await client_maker.crcat_approve_pending(
1199-
CRCATApprovePending(wallet_id=cat_wallet_maker.id(), min_amount_to_claim=uint64(8)),
1199+
CRCATApprovePending(wallet_id=cat_wallet_maker.id(), min_amount_to_claim=uint64(8), push=True),
12001200
wallet_environments.tx_config,
12011201
)
12021202

@@ -1242,7 +1242,7 @@ async def assert_trade_tx_number(wallet_node: WalletNode, trade_id: bytes32, num
12421242
)
12431243

12441244
await client_maker.crcat_approve_pending(
1245-
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(9)),
1245+
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(9), push=True),
12461246
wallet_environments.tx_config,
12471247
)
12481248

@@ -1564,7 +1564,7 @@ async def assert_trade_tx_number(wallet_node: WalletNode, trade_id: bytes32, num
15641564

15651565
if credential_restricted:
15661566
await client_maker.crcat_approve_pending(
1567-
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(15)),
1567+
CRCATApprovePending(wallet_id=new_cat_wallet_maker.id(), min_amount_to_claim=uint64(15), push=True),
15681568
wallet_environments.tx_config,
15691569
)
15701570

chia/_tests/wallet/vc_wallet/test_vc_wallet.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,9 @@ async def test_vc_lifecycle(wallet_environments: WalletTestFramework) -> None:
510510

511511
# Claim the pending approval to our wallet
512512
await client_1.crcat_approve_pending(
513-
CRCATApprovePending(wallet_id=env_1.dealias_wallet_id("crcat"), min_amount_to_claim=uint64(90), fee=uint64(90)),
513+
CRCATApprovePending(
514+
wallet_id=env_1.dealias_wallet_id("crcat"), min_amount_to_claim=uint64(90), fee=uint64(90), push=True
515+
),
514516
wallet_environments.tx_config,
515517
)
516518
await wallet_environments.process_pending_states(

0 commit comments

Comments
 (0)