diff --git a/chia/full_node/mempool_manager.py b/chia/full_node/mempool_manager.py index dfc3875240..0287997b3d 100644 --- a/chia/full_node/mempool_manager.py +++ b/chia/full_node/mempool_manager.py @@ -480,7 +480,6 @@ class MempoolManager: return None async def new_peak(self, new_peak: Optional[BlockRecord]) -> List[Tuple[SpendBundle, NPCResult, bytes32]]: - # breakpoint() """ Called when a new peak is available, we try to recreate a mempool for the new tip. """ diff --git a/tests/wallet/test_singleton_lifecycle.py b/tests/wallet/test_singleton_lifecycle.py index 0a3dd40e0f..f98c57d164 100644 --- a/tests/wallet/test_singleton_lifecycle.py +++ b/tests/wallet/test_singleton_lifecycle.py @@ -32,13 +32,10 @@ POOL_REWARD_PREFIX_MAINNET = bytes32.fromhex("ccd5bb71183532bff220ba46c268991a00 def check_coin_spend(coin_spend: CoinSpend): - # breakpoint() try: cost, result = coin_spend.puzzle_reveal.run_with_cost(INFINITE_COST, coin_spend.solution) except Exception as ex: print(ex) - # breakpoint() - print(ex) def adaptor_for_singleton_inner_puzzle(puzzle: Program) -> Program: @@ -128,7 +125,6 @@ def test_only_odd_coins_0(): assert launcher_coin in coin_set_removed assert farmed_coin in coin_set_removed - # breakpoint() singleton_expected_puzzle_hash = singleton_puzzle_hash(launcher_id, launcher_puzzle_hash, initial_singleton_puzzle) expected_singleton_coin = Coin(launcher_coin.name(), singleton_expected_puzzle_hash, launcher_amount)