Post
Topic
Board Announcements (Altcoins)
Re: Official Anoncoin chat thread (including history)
by
thunderjet
on 29/10/2014, 00:14:42 UTC
Thanks Gnosis for quick answer on mine previous question.Now I found something much more serious.In Bitcoin before v0.8.6 wallet.cpp code had one serious bug which allows relaying of invalid transactions.Error in code allowed insertion of empty transactions into vtxPrev which nasty consequence was that nodes whose transmitting such transactions were banned - causing shutdown parts of network, problems in nodes communications and acception of transactions.This bug was never fixed in Anoncoin wallet.cpp:

Bug is on wallet.cpp Line 850 of anoncoin code - if (!tx.IsCoinBase())  should be if (!tx.IsCoinBase() && !tx.vin.empty())