What's wrong with my chia(log file)?

What’s wrong with my chia (log file)?Help me,please.I think it’s my config.yaml file.

chia.farmer.farmer : ERROR Could not find authentication sk for pk: aeebdbf…

wallet chia.wallet.wallet_node : WARNING SpendBundle has been rejected by the FullNode

I haven’t seen that error or warning before. So I’ll post what I have found and maybe some others can help decipher what it means. I can’t find anything on the first error.

  • What is your setup?
  • Has it been working and then stopped or is this the first startup?
  • What changed right before this happened?

Here is the portion of the Chia Blockchain code that produces the second message.

This is an ack for our previous SendTransaction call. This removes the transaction from
        the send queue if we have sent it to enough nodes.
        """
        if self.wallet_state_manager is None:
            return
        if ack.status == MempoolInclusionStatus.SUCCESS:
            self.log.info(
                f"SpendBundle has been received and accepted to mempool by the FullNode. {ack}"
            )
        elif ack.status == MempoolInclusionStatus.PENDING:
            self.log.info(
                f"SpendBundle has been received (and is pending) by the FullNode. {ack}"
            )
        else:
            self.log.warning(f"SpendBundle has been rejected by the FullNode. {ack}")
        if ack.error is not None:
            await self.wallet_state_manager.remove_from_queue(
                ack.txid, name, ack.status, Err[ack.error]
            )
        else:
            await self.wallet_state_manager.remove_from_queue(
                ack.txid, name, ack.status, None
            )

Is that from your harvester or another device?

Now I deleted my chiablockchain completely from my PC(from users/…/chia… and from users/…/Appdata and installed from the scratch.It’s still syncing including wallet.I tried chia wallet show
and got the following result
Wallet ID 1 type STANDARD_WALLET Chia Wallet
-Total Balance: 0.0 xch (0 mojo)
-Pending Total Balance: 0.0 xch (0 mojo)
-Spendable: 0.0 xch (0 mojo)

Exception ignored in: <function _ProactorBasePipeTransport.del at 0x0000022C4D79D9D0>
Traceback (most recent call last):
File “asyncio\proactor_events.py”, line 116, in del
File “asyncio\proactor_events.py”, line 108, in close
File “asyncio\base_events.py”, line 746, in call_soon
File “asyncio\base_events.py”, line 510, in _check_closed
RuntimeError: Event loop is closed

Could anybody tell me what’s wrong with my wallet?