Merge pull request #405 from sipa/syncdefault

Bugfix: add autogenerated addresses to address book
pull/2/merge
Jeff Garzik 14 years ago
commit b8cbbc2c28

@ -268,7 +268,10 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn)
BOOST_FOREACH(const CTxOut& txout, wtx.vout) BOOST_FOREACH(const CTxOut& txout, wtx.vout)
{ {
if (txout.scriptPubKey == scriptDefaultKey) if (txout.scriptPubKey == scriptDefaultKey)
{
SetDefaultKey(GetOrReuseKeyFromPool()); SetDefaultKey(GetOrReuseKeyFromPool());
SetAddressBookName(PubKeyToAddress(vchDefaultKey), "");
}
} }
// Notify UI // Notify UI

Loading…
Cancel
Save