parent
66fb8476b2
commit
fa8fd3044b
@ -0,0 +1,11 @@ |
||||
contract LimitFunds { |
||||
|
||||
uint LIMIT = 5000; |
||||
|
||||
function() { throw; } |
||||
|
||||
function deposit() { |
||||
if (this.balance > LIMIT) throw; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue