Skip to content

Commit 5a09743

Browse files
committed
fix: remove get_plot_id()
Signed-off-by: djerfy <djerfy@gmail.com>
1 parent 4bf53a8 commit 5a09743

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pool/store/postgresql_store.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from chia.pools.pool_wallet_info import PoolState
1212
from chia.protocols.pool_protocol import PostPartialPayload, PostPartialRequest
1313
from chia.types.blockchain_format.coin import Coin
14-
from chia.types.blockchain_format.proof_of_space import get_plot_id
1514

1615
from chia_rs import (
1716
G1Element,
@@ -459,7 +458,7 @@ async def add_partial(
459458
difficulty,
460459
error,
461460
partial_payload.harvester_id.hex(),
462-
get_plot_id(partial_payload.proof_of_space).hex(),
461+
partial_payload.proof_of_space.compute_plot_id().hex(),
463462
(str((req_metadata.get_chia_version() or ''))[:20] or None) if req_metadata else None,
464463
req_metadata.get_remote() if req_metadata else None,
465464
req_metadata.get_host() if req_metadata else None,

0 commit comments

Comments
 (0)