File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 17
17
from chia .util .db_wrapper import DBWrapper2
18
18
from chia .wallet .notification_store import NotificationStore
19
19
from chia .wallet .util .tx_config import DEFAULT_TX_CONFIG
20
- from chia .wallet .wallet_request_types import DeleteNotifications
21
20
22
21
23
22
# For testing backwards compatibility with a DB change to add height
@@ -191,9 +190,7 @@ async def track_coin_state(*args: Any) -> bool:
191
190
await notification_manager_2 .notification_store .delete_all_notifications ()
192
191
assert len (await notification_manager_2 .notification_store .get_all_notifications ()) == 0
193
192
await notification_manager_2 .notification_store .add_notification (notifications [0 ])
194
- await notification_manager_2 .notification_store .delete_notifications (
195
- DeleteNotifications ([n .id for n in notifications ])
196
- )
193
+ await notification_manager_2 .notification_store .delete_notifications ([n .id for n in notifications ])
197
194
assert len (await notification_manager_2 .notification_store .get_all_notifications ()) == 0
198
195
199
196
assert not await func (* notification_manager_2 .most_recent_args )
You can’t perform that action at this time.
0 commit comments