Skip to content

Commit

Permalink
Change bytes32 to bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaslana committed Apr 30, 2024
1 parent 8c221a0 commit aa3b5c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/plotting/create_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ async def create_plots(
# The plot id is based on the harvester, farmer, and pool keys
if keys.pool_public_key is not None:
plot_id: bytes32 = calculate_plot_id_pk(keys.pool_public_key, plot_public_key)
plot_memo: bytes32 = stream_plot_info_pk(keys.pool_public_key, keys.farmer_public_key, sk)
plot_memo: bytes = stream_plot_info_pk(keys.pool_public_key, keys.farmer_public_key, sk)
else:
assert keys.pool_contract_puzzle_hash is not None
plot_id = calculate_plot_id_ph(keys.pool_contract_puzzle_hash, plot_public_key)
Expand Down

0 comments on commit aa3b5c3

Please sign in to comment.