diff options
author | chriseth <chris@ethereum.org> | 2018-08-15 03:38:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-15 03:38:07 +0800 |
commit | cc54f6c4256cdccf4b25586ed63800caa836d9c6 (patch) | |
tree | 11fe607f1acbc6daaa8d17b30ac45db2f7981d77 /test/compilationTests/zeppelin/MultisigWallet.sol | |
parent | 8f27fb1f4a14f369e8feb3ea22a38d50998cad5c (diff) | |
parent | 14e116c1d57e1797e7206299d0fdfed2aa03cdf2 (diff) | |
download | dexon-solidity-cc54f6c4256cdccf4b25586ed63800caa836d9c6.tar.gz dexon-solidity-cc54f6c4256cdccf4b25586ed63800caa836d9c6.tar.zst dexon-solidity-cc54f6c4256cdccf4b25586ed63800caa836d9c6.zip |
Merge pull request #4738 from ethereum/dataloc_merged
Enforce data location.
Diffstat (limited to 'test/compilationTests/zeppelin/MultisigWallet.sol')
-rw-r--r-- | test/compilationTests/zeppelin/MultisigWallet.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/MultisigWallet.sol b/test/compilationTests/zeppelin/MultisigWallet.sol index 3793428d..9aac5c53 100644 --- a/test/compilationTests/zeppelin/MultisigWallet.sol +++ b/test/compilationTests/zeppelin/MultisigWallet.sol @@ -55,7 +55,7 @@ contract MultisigWallet is Multisig, Shareable, DayLimit { * @param _value The value to send * @param _data The data part of the transaction */ - function execute(address _to, uint256 _value, bytes _data) external onlyOwner returns (bytes32 _r) { + function execute(address _to, uint256 _value, bytes calldata _data) external onlyOwner returns (bytes32 _r) { // first, take the opportunity to check that we're under the daily limit. if (underLimit(_value)) { emit SingleTransact(msg.sender, _value, _to, _data); |