We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e19053c commit 2b7db51Copy full SHA for 2b7db51
src/libraries/BytesParsing.sol
@@ -80,7 +80,7 @@ library BytesParsing {
80
bytes memory encoded,
81
uint offset
82
) internal pure returns (address, uint) {
83
- (uint160 ret, uint nextOffset) = asUint160(encoded, offset);
+ (uint160 ret, uint nextOffset) = asUint160Unchecked(encoded, offset);
84
return (address(ret), nextOffset);
85
}
86
0 commit comments