Skip to content

Commit

Permalink
fix(clock-auction): add reference to ownable
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit committed Nov 21, 2018
1 parent c3d2a2c commit 4ed6a91
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ pragma solidity ^0.4.18;
import "../ERC721.sol";
import "./ClockAuctionBase.sol";
import "openzeppelin-solidity/contracts/lifecycle/Pausable.sol";
import "openzeppelin-solidity/contracts/ownership/Ownable.sol";


/// @title Clock auction for non-fungible tokens.
contract ClockAuction is Pausable, ClockAuctionBase {
contract ClockAuction is Pausable, Ownable, ClockAuctionBase {

/// @dev Constructor creates a reference to the NFT ownership contract
/// and verifies the owner cut is in the valid range.
Expand Down

0 comments on commit 4ed6a91

Please sign in to comment.