Hello,
I tried to build feathercoinj but when i execute maven clean package, I have errors such as:
[ERROR] /C:/feathercoin/feathercoinj/core/src/test/java/com/google/feathercoin/core/BlockChainTest.java:[159,43] cannot find symbol
[ERROR] symbol: variable interval
[ERROR] location: variable unitTestParams of type com.google.feathercoin.core.NetworkParameters
And the code athe the line 159 is : for (int i = 0; i < unitTestParams.interval - 1; i++) {
It does not like the “.”
I am fighting against this. I guess I missed something. Did you get this error message ?
Thanks,
Hi
This is the unit tests in hanks code that are broken, to get around this you need to tell maven to skip the tests. so the command would be ‘mvn clean install -D maven.test.skip=true’
This build the package succesfully for you.
Keith