Skip to content

Commit

Permalink
fix bug (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
anjor authored Nov 13, 2024
1 parent bca065f commit 797ed6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dataprep-tools/filecoin/boost_create_deals.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ def create_deals(metadata_obj):
), f"metadata.csv should have 5 columns, instead found f{len(line)}, {line}"

commp_piece_cid = line[1]
padded_size = line[2]
payload_cid = line[3]
payload_cid = line[2]
padded_size = line[3]

check_obj = client.check_exists(epoch + "/" + file_name)
if not check_obj[0]:
Expand Down

0 comments on commit 797ed6c

Please sign in to comment.