From 9ff82aecef62b402fa7b7837af8089e42fa01eb6 Mon Sep 17 00:00:00 2001 From: Remco Bloemen Date: Thu, 23 Mar 2017 12:54:42 +0000 Subject: [PATCH] Remove non-compiling payable default --- test/helpers/HasNoEtherTest.sol | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/helpers/HasNoEtherTest.sol b/test/helpers/HasNoEtherTest.sol index bcafed326..6b29e325d 100644 --- a/test/helpers/HasNoEtherTest.sol +++ b/test/helpers/HasNoEtherTest.sol @@ -6,12 +6,6 @@ contract HasNoEtherTest is HasNoEther { // Constructor with explicit payable — should still fail function HasNoEtherTest() payable { - - } - - // Default function with explicit payable — should still fail - function() external payable { - throw; } }