Skip to content

Commit

Permalink
another contentType enum specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec committed Oct 6, 2024
1 parent f2cef4e commit ff9c69e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fluffy/eth_data/history_data_json_store.nim
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ func readBlockData*(
res.add((contentKey, blockData.body.hexToSeqByte()))

block:
let contentKey = ContentKey(contentType: receipts, receiptsKey: contentKeyType)
let contentKey = ContentKey(
contentType: ContentType.receipts, receiptsKey: contentKeyType)

res.add((contentKey, blockData.receipts.hexToSeqByte()))
except ValueError as e:
Expand Down

0 comments on commit ff9c69e

Please sign in to comment.