Doesn't compile under linux:
*** No rule to make target `libleveldb.a'. Stop.
Please fix this.
For anyone else having this issue, just copy the 2 files libleveldb.a and libmemenv.a from another wallet into src/leveldb. Still it should be fixed in the github repos.
Then upon launching the wallet, another problem arises:
************************
EXCEPTION: St11logic_error
basic_string::_S_construct null not valid
AnonymousCoin in dnsseed
terminate called after throwing an instance of 'std::logic_error'
what(): basic_string::_S_construct null not valid
Aborted (core dumped)
This time it's in the code, again, if someone has trouble, here we go:
in src/net.cpp around line 1195, it should look like this (I added the first address from the original post here, maybe other addresses might work):
static const char *strMainNetDNSSeed[][2] = {
{"anonymouscoin.net", "198.15.160.171"},
{NULL, NULL}
};
After recompiling, it launches and syncs.
Hmm. Is this coin still alive?
Edit: I even received a transaction so it definitely works. Could be better if it worked out of the box...