chia/full_node/signage_point.py -> chia/consensus/signage_point.py (#19706)

This commit is contained in:
Richard Kiss
2025-06-12 11:14:27 -07:00
committed by GitHub
parent cbfd5a53a2
commit 4f03890871
10 changed files with 9 additions and 9 deletions
@@ -20,8 +20,8 @@ from chia.consensus.difficulty_adjustment import get_next_sub_slot_iters_and_dif
from chia.consensus.find_fork_point import find_fork_point_in_chain
from chia.consensus.multiprocess_validation import PreValidationResult
from chia.consensus.pot_iterations import is_overflow_block
from chia.consensus.signage_point import SignagePoint
from chia.full_node.full_node_store import FullNodeStore, UnfinishedBlockEntry, find_best_block
from chia.full_node.signage_point import SignagePoint
from chia.protocols import timelord_protocol
from chia.protocols.timelord_protocol import NewInfusionPointVDF
from chia.simulator.block_tools import BlockTools, create_block_tools_async, get_signage_point, make_unfinished_block
+1 -1
View File
@@ -51,10 +51,10 @@ from chia.consensus.blockchain import Blockchain
from chia.consensus.get_block_challenge import get_block_challenge
from chia.consensus.multiprocess_validation import PreValidationResult, pre_validate_block
from chia.consensus.pot_iterations import is_overflow_block
from chia.consensus.signage_point import SignagePoint
from chia.full_node.coin_store import CoinStore
from chia.full_node.full_node import WalletUpdate
from chia.full_node.full_node_api import FullNodeAPI
from chia.full_node.signage_point import SignagePoint
from chia.full_node.sync_store import Peak
from chia.protocols import full_node_protocol, timelord_protocol, wallet_protocol
from chia.protocols import full_node_protocol as fnp
+1 -1
View File
@@ -15,7 +15,7 @@ from chia._tests.util.setup_nodes import SimulatorsAndWalletsServices
from chia._tests.util.time_out_assert import time_out_assert
from chia.consensus.blockchain import Blockchain
from chia.consensus.pot_iterations import is_overflow_block
from chia.full_node.signage_point import SignagePoint
from chia.consensus.signage_point import SignagePoint
from chia.protocols import full_node_protocol
from chia.protocols.outbound_message import NodeType
from chia.rpc.full_node_rpc_api import get_average_block_time, get_nearest_transaction_block
+1 -1
View File
@@ -32,7 +32,7 @@ from chia.consensus.block_rewards import calculate_base_farmer_reward, calculate
from chia.consensus.blockchain_interface import BlockRecordsProtocol
from chia.consensus.coinbase import create_farmer_coin, create_pool_coin
from chia.consensus.prev_transaction_block import get_prev_transaction_block
from chia.full_node.signage_point import SignagePoint
from chia.consensus.signage_point import SignagePoint
from chia.types.blockchain_format.coin import Coin, hash_coin_ids
from chia.types.blockchain_format.vdf import VDFInfo, VDFProof
from chia.types.generator_types import NewBlockGenerator
+1 -1
View File
@@ -47,6 +47,7 @@ from chia.consensus.difficulty_adjustment import get_next_sub_slot_iters_and_dif
from chia.consensus.make_sub_epoch_summary import next_sub_epoch_summary
from chia.consensus.multiprocess_validation import PreValidationResult, pre_validate_block
from chia.consensus.pot_iterations import calculate_sp_iters
from chia.consensus.signage_point import SignagePoint
from chia.full_node.block_store import BlockStore
from chia.full_node.check_fork_next_block import check_fork_next_block
from chia.full_node.coin_store import CoinStore
@@ -56,7 +57,6 @@ from chia.full_node.hint_management import get_hints_and_subscription_coin_ids
from chia.full_node.hint_store import HintStore
from chia.full_node.mempool import MempoolRemoveInfo
from chia.full_node.mempool_manager import MempoolManager, NewPeakItem
from chia.full_node.signage_point import SignagePoint
from chia.full_node.subscriptions import PeerSubscriptions, peers_for_spend_bundle
from chia.full_node.sync_store import Peak, SyncStore
from chia.full_node.tx_processing_queue import TransactionQueue, TransactionQueueEntry
+1 -1
View File
@@ -39,11 +39,11 @@ from chia.consensus.blockchain import BlockchainMutexPriority
from chia.consensus.generator_tools import get_block_header
from chia.consensus.get_block_generator import get_block_generator
from chia.consensus.pot_iterations import calculate_ip_iters, calculate_iterations_quality, calculate_sp_iters
from chia.consensus.signage_point import SignagePoint
from chia.full_node.coin_store import CoinStore
from chia.full_node.fee_estimator_interface import FeeEstimatorInterface
from chia.full_node.full_block_utils import get_height_and_tx_status_from_block, header_block_from_block
from chia.full_node.mempool_check_conditions import get_puzzle_and_solution_for_coin
from chia.full_node.signage_point import SignagePoint
from chia.full_node.tx_processing_queue import TransactionQueueEntry, TransactionQueueFull
from chia.protocols import farmer_protocol, full_node_protocol, introducer_protocol, timelord_protocol, wallet_protocol
from chia.protocols.fee_estimate import FeeEstimate, FeeEstimateGroup, fee_rate_v2_to_v1
+1 -1
View File
@@ -15,7 +15,7 @@ from chia.consensus.difficulty_adjustment import can_finish_sub_and_full_epoch
from chia.consensus.make_sub_epoch_summary import make_sub_epoch_summary
from chia.consensus.multiprocess_validation import PreValidationResult
from chia.consensus.pot_iterations import calculate_sp_interval_iters
from chia.full_node.signage_point import SignagePoint
from chia.consensus.signage_point import SignagePoint
from chia.protocols import timelord_protocol
from chia.protocols.outbound_message import Message
from chia.types.blockchain_format.classgroup import ClassgroupElement
+1 -1
View File
@@ -6,7 +6,7 @@ from chia_rs import BlockRecord, CoinSpend, EndOfSubSlotBundle, FullBlock, Spend
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import uint32
from chia.full_node.signage_point import SignagePoint
from chia.consensus.signage_point import SignagePoint
from chia.rpc.rpc_client import RpcClient
from chia.types.coin_record import CoinRecord
from chia.types.coin_spend import CoinSpendWithConditions
+1 -1
View File
@@ -59,10 +59,10 @@ from chia.consensus.pot_iterations import (
is_overflow_block,
validate_pospace_and_get_required_iters,
)
from chia.consensus.signage_point import SignagePoint
from chia.consensus.vdf_info_computation import get_signage_point_vdf_info
from chia.daemon.keychain_proxy import KeychainProxy, connect_to_keychain_and_validate, wrap_local_keychain
from chia.full_node.bundle_tools import simple_solution_generator, simple_solution_generator_backrefs
from chia.full_node.signage_point import SignagePoint
from chia.plotting.create_plots import PlotKeys, create_plots
from chia.plotting.manager import PlotManager
from chia.plotting.util import (