Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/09/15 in Posts

  1. It is doing it, but just after some time. It found me some connections without adding them with addnode. I think the problem is that no correct configured dnsseed is online, but i can be wrong here. It is no problem to add some static nodes at seed.freico.in but this need to be done by someone who is in control of the sites DNS. Rik
    1 point
  2. If anyone have the time to fix the other error your welcome. It is not critical, so i guess it could also be done later..
    1 point
  3. Argh, found the error.. Inside wallet.cpp >>> bool CWallet::CreateTransaction <<< There is the translation of the output value: const mpq qValue = RoundAbsolute(s.second, ROUND_AWAY_FROM_ZERO, 0); const mpz zValue = nValue.get_num() / qValue.get_den(); CTxOut txout(mpz_to_i64(zValue), s.first); Problem is: nValue is the hole amount which is then added to every txout. The right one should be qValue: const mpz zValue = qValue.get_num() / qValue.get_den(); Very small one, but also easy to overlook.. Commit can also be found here: https://github.com/WorldLeadCur
    1 point
×
×
  • Create New...