Remove non-compiling payable default

This commit is contained in:
Remco Bloemen
2017-03-23 12:54:42 +00:00
parent d1af3ef1b3
commit 9ff82aecef

View File

@ -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;
}
}