Skip to content

Commit

Permalink
Add missing .name() in WalletStateManager.get_filter_additions_remova…
Browse files Browse the repository at this point in the history
…ls() (#8958)
  • Loading branch information
altendky committed Nov 2, 2021
1 parent 479f89c commit eb62a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/wallet/wallet_state_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ async def get_filter_additions_removals(
record = await self.puzzle_store.get_derivation_record_for_puzzle_hash(removal.puzzle_hash)
if record is None:
continue
unspent_coin_names.remove(removal)
unspent_coin_names.remove(removal.name())

my_puzzle_hashes = self.puzzle_store.all_puzzle_hashes

Expand Down

0 comments on commit eb62a28

Please sign in to comment.