This commit is contained in:
Ricardo Guilherme Schmidt 2017-11-09 14:33:01 -02:00
parent fb2ed3d400
commit 0678a18ec4
4 changed files with 10 additions and 9 deletions

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.12;
pragma solidity ^0.4.18;
/**
* @title DelegatedCall

View File

@ -1,12 +1,12 @@
pragma solidity ^0.4.15;
pragma solidity ^0.4.18;
contract ERC20 {
uint256 public totalSupply;
function balanceOf(address who) constant returns (uint256);
function allowance(address owner, address spender) constant returns (uint256);
function transfer(address to, uint256 value) returns (bool ok);
function transferFrom(address from, address to, uint256 value) returns (bool ok);
function approve(address spender, uint256 value) returns (bool ok);
function balanceOf(address who) public constant returns (uint256);
function allowance(address owner, address spender) public constant returns (uint256);
function transfer(address to, uint256 value) public returns (bool ok);
function transferFrom(address from, address to, uint256 value) public returns (bool ok);
function approve(address spender, uint256 value) public returns (bool ok);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.15;
pragma solidity ^0.4.18;
import "./MultiSigStub.sol";

View File

@ -1,9 +1,10 @@
pragma solidity ^0.4.15;
pragma solidity ^0.4.18;
import "./DelegatedCall.sol";
/**
* @title MultiSigStub
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
* Contract that delegates calls to a library to build a full MultiSigWallet that is cheap to create.
*/
contract MultiSigStub is DelegatedCall {