Code:
function SetPwd(bytes32 hash) public payable
{
if( (!isclosed&&(msg.value>1 ether)) || hashPwd==0x00)
{
hashPwd = hash;
sender = msg.sender;
cashOutTime = now;
}
}
I only can see a transaction with exact 1 ether, but haven't it be more than 1 ether to close the contract?