Skip to content

Commit

Permalink
mypy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-o-how committed Dec 23, 2024
1 parent e0f75de commit 49aebda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chia/pools/pool_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from typing_extensions import final

from chia.pools.pool_config import PoolWalletConfig, load_pool_config, update_pool_config
from chia.wallet.puzzles.singleton_top_layer import SINGLETON_LAUNCHER
from chia.pools.pool_puzzles import (
SINGLETON_LAUNCHER,
create_absorb_spend,
create_full_puzzle,
create_pooling_inner_puzzle,
Expand Down
2 changes: 1 addition & 1 deletion chia/wallet/nft_wallet/nft_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ async def mint_from_xch(
# Loop to create each intermediate coin, launcher, eve and (optional) transfer spends
for mint_number in range(mint_number_start, mint_number_end):
# Create the puzzle, solution and coin spend for the intermediate launcher
intermediate_launcher_puz = nft_puzzle_utils.INTERMEDIATE_LAUNCHER_MOD.curry(
intermediate_launcher_puz = did_wallet_puzzles.INTERMEDIATE_LAUNCHER_MOD.curry(
SINGLETON_LAUNCHER_PUZZLE_HASH, mint_number, mint_total
)
intermediate_launcher_ph = intermediate_launcher_puz.get_tree_hash()
Expand Down

0 comments on commit 49aebda

Please sign in to comment.