mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update compilation tests.
This commit is contained in:
@@ -226,13 +226,11 @@ contract MultiSigWallet {
|
||||
{
|
||||
if (isConfirmed(transactionId)) {
|
||||
Transaction storage tx = transactions[transactionId];
|
||||
tx.executed = true;
|
||||
if (tx.destination.call.value(tx.value)(tx.data))
|
||||
(tx.executed,) = tx.destination.call.value(tx.value)(tx.data);
|
||||
if (tx.executed)
|
||||
emit Execution(transactionId);
|
||||
else {
|
||||
else
|
||||
emit ExecutionFailure(transactionId);
|
||||
tx.executed = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user