Passing storage references in library calls https://github.com/ethereum/wiki/wiki/Solidity-Features#internal-types-for-libraries You can now pass storage data in a library call via reference. This al… (View Post)
Hm, that is quite ancient (it is from a time where Solidity still did not have its own version). push was introduced in 0.1.6: https://github.com/ethereum/wiki/wiki/Solidity-Changelog I think you eit… (View Post)
You have to give all files that are imported at any point as arguments to the commandline compiler. The strings used for the import statements have to be exactly the same as the ones used as argument… (View Post)
The problem you state is one of the dangers of Frontier. The namereg uses plain binary, assumed to be the UTF-8 encoding of a Unicode string. In theory, it is possible to check that the registered na… (View Post)
The simplest way to fix this is to put both contracts in the same file. If you want to call getAge normally, just use age.getAge(); If you want to control the value and gas, use age.getAge.value(10).… (View Post)