Skip to content

Commit 8591c91

Browse files
committed
Use BlockStore locally, for now
1 parent 757b617 commit 8591c91

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chia/full_node/full_node.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
from chia.consensus.block_body_validation import ForkInfo
4141
from chia.consensus.block_creation import unfinished_block_to_full_block
4242
from chia.consensus.block_height_map import BlockHeightMap
43-
from chia.consensus.block_store_protocol import BlockStoreProtocol
4443
from chia.consensus.blockchain import AddBlockResult, Blockchain, BlockchainMutexPriority, StateChangeSummary
4544
from chia.consensus.blockchain_interface import BlockchainInterface
4645
from chia.consensus.coin_store_protocol import CoinStoreProtocol
@@ -400,7 +399,7 @@ async def manage(self) -> AsyncIterator[None]:
400399
await asyncio.gather(*self._segment_task_list, return_exceptions=True)
401400

402401
@property
403-
def block_store(self) -> BlockStoreProtocol:
402+
def block_store(self) -> BlockStore:
404403
assert self._block_store is not None
405404
return self._block_store
406405

0 commit comments

Comments
 (0)