Skip to content

Commit

Permalink
TODO comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmannjan committed Jun 11, 2024
1 parent b733284 commit a0226e2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib/CLValue/Key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,18 +99,22 @@ export class CLKeyBytesParser extends CLValueBytesParsers {
concat([Uint8Array.from([KeyTag.Dictionary]), value.data.data])
);
case KeyTag.SystemEntityRegistry:
// TODO: Add padding to 32
return Ok(
concat([Uint8Array.from([KeyTag.SystemEntityRegistry]), value.data.data])
);
case KeyTag.EraSummary:
// TODO: Add padding to 32
return Ok(
concat([Uint8Array.from([KeyTag.EraSummary]), value.data.data])
);
case KeyTag.ChainspecRegistry:
// TODO: Add padding to 32
return Ok(
concat([Uint8Array.from([KeyTag.ChainspecRegistry]), value.data.data])
);
case KeyTag.ChecksumRegistry:
// TODO: Add padding to 32
return Ok(
concat([Uint8Array.from([KeyTag.ChecksumRegistry]), value.data.data])
);
Expand Down

0 comments on commit a0226e2

Please sign in to comment.