fix solc version and comments

This commit is contained in:
Ricardo Guilherme Schmidt 2017-11-09 13:50:54 -02:00
parent 2442deada7
commit 1ac4789bf7
2 changed files with 7 additions and 2 deletions

View File

@ -1,8 +1,13 @@
pragma solidity ^0.4.15;
pragma solidity ^0.4.18;
import "./MultiSigWallet.sol";
import "./ERC20.sol";
/**
* @title MultiSigTokenWallet
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
* MultiSigWallet that supports withdrawing all ERC20 tokens at once.
*/
contract MultiSigTokenWallet is MultiSigWallet {
event TokenDeposit(address indexed token, address indexed sender, uint value);

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.17;
pragma solidity ^0.4.18;
/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.