Skip to content

Commit

Permalink
contracts: Add 128bit uint support to parseCBORUint utility
Browse files Browse the repository at this point in the history
  • Loading branch information
lubej committed Jul 29, 2024
1 parent 816d02d commit 8580d00
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contracts/contracts/Subcall.sol
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ library Subcall {
len = 4;
} else if (prefix == 0x1b) {
len = 8;
} else if (prefix == 0x1d) {
len = 16;
} else {
revert InvalidUintSize(prefix);
}
Expand Down

0 comments on commit 8580d00

Please sign in to comment.