From eeef82b2d77c6f956039c57b0598e684254ee6dd Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 28 Jun 2018 18:08:45 +0200 Subject: Fallback function has to be external: backwards-compatible changes. --- test/compilationTests/zeppelin/MultisigWallet.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/compilationTests/zeppelin/MultisigWallet.sol') diff --git a/test/compilationTests/zeppelin/MultisigWallet.sol b/test/compilationTests/zeppelin/MultisigWallet.sol index ea620fc0..96624d3a 100644 --- a/test/compilationTests/zeppelin/MultisigWallet.sol +++ b/test/compilationTests/zeppelin/MultisigWallet.sol @@ -39,7 +39,7 @@ contract MultisigWallet is Multisig, Shareable, DayLimit { /** * @dev Fallback function, receives value and emits a deposit event. */ - function() payable { + function() external payable { // just being sent some cash? if (msg.value > 0) emit Deposit(msg.sender, msg.value); -- cgit v1.2.3