remove commented-out debug breakpoint()s (#8114)

This commit is contained in:
Arvid Norberg
2021-08-18 10:13:03 -07:00
committed by GitHub
parent d81198384f
commit cd2f9d9d00
2 changed files with 0 additions and 5 deletions
-1
View File
@@ -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.
"""
-4
View File
@@ -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)