Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
Remove unnecessary sload
Browse files Browse the repository at this point in the history
  • Loading branch information
abandeali1 authored and jalextowle committed Sep 23, 2019
1 parent 00ce470 commit c539d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/multisig/contracts/src/AssetProxyOwner.sol
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ contract AssetProxyOwner is
view
{
bytes4 functionSelector = data.readBytes4(0);
TimeLock storage timeLock = functionCallTimeLocks[functionSelector][destination];
TimeLock memory timeLock = functionCallTimeLocks[functionSelector][destination];
// solhint-disable not-rely-on-time
if (timeLock.hasCustomTimeLock) {
require(
Expand Down

0 comments on commit c539d49

Please sign in to comment.