Skip to content

Commit

Permalink
fix(clock-auction): replace owner with owner()
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit committed Nov 21, 2018
1 parent c2460d2 commit 3caa9cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract ClockAuction is Pausable, Ownable, ClockAuctionBase {
address nftAddress = address(nonFungibleContract);

require(
msg.sender == owner ||
msg.sender == owner() ||
msg.sender == nftAddress
);
nftAddress.transfer(this.balance);
Expand Down

0 comments on commit 3caa9cb

Please sign in to comment.