diff --git a/chia/full_node/full_node_api.py b/chia/full_node/full_node_api.py index caa9e561e58f..24c661de2220 100644 --- a/chia/full_node/full_node_api.py +++ b/chia/full_node/full_node_api.py @@ -465,7 +465,7 @@ async def new_signage_point_or_end_of_sub_slot( ) response = await peer.request_signage_point_or_end_of_sub_slot(full_node_request, timeout=10) if not isinstance(response, full_node_protocol.RespondEndOfSubSlot): - self.full_node.log.warning(f"Invalid response for slot {response}") + self.full_node.log.debug(f"Invalid response for slot {response}") return None collected_eos.append(response) if ( diff --git a/chia/wallet/wallet_coin_store.py b/chia/wallet/wallet_coin_store.py index 8d0f3973a4d9..a52e9d6e7ce3 100644 --- a/chia/wallet/wallet_coin_store.py +++ b/chia/wallet/wallet_coin_store.py @@ -121,7 +121,7 @@ async def add_coin_record(self, record: WalletCoinRecord) -> None: async def set_spent(self, coin_name: bytes32, height: uint32) -> WalletCoinRecord: current: Optional[WalletCoinRecord] = await self.get_coin_record(coin_name) assert current is not None - assert current.spent is False + # assert current.spent is False spent: WalletCoinRecord = WalletCoinRecord( current.coin,