-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,7 @@ abstract contract StorageProofIsm is AbstractCcipReadIsm, OwnableUpgradeable { | |
bytes32 _dispatchedSlotKey | ||
) public view returns (bytes memory) { | ||
// Get the slot value as bytes | ||
bytes[][] memory proofs = abi.decode(_proofs, (bytes[][])); | ||
bytes[][2] memory proofs = abi.decode(_proofs, (bytes[][2])); | ||
Check notice Code scanning / Olympix Integrated Security Local variables in test functions are not properly fuzzed, potentially reducing the effectiveness of property-based testing. For more information, visit: http://detectors.olympixdevsectools.com/article/web3-vulnerability/unfuzzed-local-variables Low
Local variables in test functions are not properly fuzzed, potentially reducing the effectiveness of property-based testing. For more information, visit: http://detectors.olympixdevsectools.com/article/web3-vulnerability/unfuzzed-local-variables
|
||
bytes[] memory accountProof = proofs[0]; | ||
Check notice Code scanning / Olympix Integrated Security Local variables in test functions are not properly fuzzed, potentially reducing the effectiveness of property-based testing. For more information, visit: http://detectors.olympixdevsectools.com/article/web3-vulnerability/unfuzzed-local-variables Low
Local variables in test functions are not properly fuzzed, potentially reducing the effectiveness of property-based testing. For more information, visit: http://detectors.olympixdevsectools.com/article/web3-vulnerability/unfuzzed-local-variables
|
||
bytes[] memory storageProof = proofs[1]; | ||
Check notice Code scanning / Olympix Integrated Security Local variables in test functions are not properly fuzzed, potentially reducing the effectiveness of property-based testing. For more information, visit: http://detectors.olympixdevsectools.com/article/web3-vulnerability/unfuzzed-local-variables Low
Local variables in test functions are not properly fuzzed, potentially reducing the effectiveness of property-based testing. For more information, visit: http://detectors.olympixdevsectools.com/article/web3-vulnerability/unfuzzed-local-variables
|
||
|
||
|