This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
import "./TestFramework.sol"; | |
import "./Bidders.sol"; | |
contract SimpleAuction is Auction { | |
// constructor | |
constructor(address _sellerAddress, | |
address _judgeAddress, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
import "./TestFramework.sol"; | |
import "./Bidders.sol"; | |
contract SimpleAuction is Auction { | |
// constructor | |
function SimpleAuction(address _sellerAddress, | |
address _judgeAddress, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dummy |