You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
354 B
15 lines
354 B
8 years ago
|
// Cost to deploy Expensive: 0x4e042f
|
||
|
// Block gas limit is: 0x47e7c4
|
||
|
// Should throw out of gas on unmodified truffle
|
||
|
// Should pass solcover truffle
|
||
|
pragma solidity ^0.4.2;
|
||
|
|
||
|
contract Expensive {
|
||
|
mapping (uint => address) map;
|
||
|
|
||
|
function Expensive(){
|
||
|
for(uint i = 0; i < 250; i++ ){
|
||
|
map[i] = address(this);
|
||
|
}
|
||
|
}
|
||
|
}
|