aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-06-14 18:28:33 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-25 23:17:48 +0800
commite299a0031f6519cecdf88eeeeff59a9eb02b6168 (patch)
treee5f305868d862c259e1d052b218a4b32ff5b39f4 /test/compilationTests/zeppelin
parent17493e64ed986c33bb5562eabafca2d52b212f19 (diff)
downloaddexon-solidity-e299a0031f6519cecdf88eeeeff59a9eb02b6168.tar.gz
dexon-solidity-e299a0031f6519cecdf88eeeeff59a9eb02b6168.tar.zst
dexon-solidity-e299a0031f6519cecdf88eeeeff59a9eb02b6168.zip
Update compilation tests.
Diffstat (limited to 'test/compilationTests/zeppelin')
-rw-r--r--test/compilationTests/zeppelin/MultisigWallet.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/MultisigWallet.sol b/test/compilationTests/zeppelin/MultisigWallet.sol
index 8fcdb63e..420c9611 100644
--- a/test/compilationTests/zeppelin/MultisigWallet.sol
+++ b/test/compilationTests/zeppelin/MultisigWallet.sol
@@ -66,7 +66,7 @@ contract MultisigWallet is Multisig, Shareable, DayLimit {
return 0;
}
// determine our operation hash.
- _r = keccak256(msg.data, block.number);
+ _r = keccak256(abi.encodePacked(msg.data, block.number));
if (!confirm(_r) && txs[_r].to == address(0)) {
txs[_r].to = _to;
txs[_r].value = _value;