mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
remove commented-out debug breakpoint()s (#8114)
This commit is contained in:
@@ -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.
|
||||
"""
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user