Update compilation tests.

This commit is contained in:
chriseth
2018-06-25 17:17:48 +02:00
committed by Alex Beregszaszi
parent 17493e64ed
commit e299a0031f
8 changed files with 21 additions and 21 deletions
@@ -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;