Skip to content

Instantly share code, notes, and snippets.

@jcb82
jcb82 / Arbitration_test.sol
Created November 21, 2018 21:12
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.25+commit.59dbf8f1.js&optimize=false&gist=
pragma solidity ^0.4.18;
import "./TestFramework.sol";
import "./Bidders.sol";
contract SimpleAuction is Auction {
// constructor
constructor(address _sellerAddress,
address _judgeAddress,
@jcb82
jcb82 / ArbitrationTest.sol
Last active April 23, 2018 20:10 — forked from anonymous/ArbitrationTest.sol
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.19+commit.c4cbbb05.js&optimize=undefined&gist=
pragma solidity ^0.4.18;
import "./TestFramework.sol";
import "./Bidders.sol";
contract SimpleAuction is Auction {
// constructor
function SimpleAuction(address _sellerAddress,
address _judgeAddress,
@jcb82
jcb82 / test
Created December 6, 2017 22:43
Solidity Auction House - Remix version
dummy