12 lines
137 B
Solidity
12 lines
137 B
Solidity
contract LimitFunds {
|
|
|
|
uint LIMIT = 5000;
|
|
|
|
function() { throw; }
|
|
|
|
function deposit() {
|
|
if (this.balance > LIMIT) throw;
|
|
}
|
|
|
|
}
|