Browse Source

Remove non-compiling payable default

Remco Bloemen 8 years ago
parent
commit
9ff82aecef
1 changed files with 0 additions and 6 deletions
  1. 0 6
      test/helpers/HasNoEtherTest.sol

+ 0 - 6
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;
   }
 
 }