Skip to content

Commit

Permalink
Reorder wallet addition and puzzle hash interest (Chia-Network#9831)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Jan 16, 2022
1 parent 48cfe11 commit d52aaad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/pools/pool_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ async def create(
await self.update_pool_config(True)

p2_puzzle_hash: bytes32 = (await self.get_current_state()).p2_singleton_puzzle_hash
await self.wallet_state_manager.add_interested_puzzle_hash(p2_puzzle_hash, self.wallet_id, False)
await self.wallet_state_manager.add_new_wallet(self, self.wallet_info.id, create_puzzle_hashes=False)
await self.wallet_state_manager.add_interested_puzzle_hash(p2_puzzle_hash, self.wallet_id, False)
return self

@staticmethod
Expand Down

0 comments on commit d52aaad

Please sign in to comment.