Browse Source

Merge pull request #405 from sipa/syncdefault

Bugfix: add autogenerated addresses to address book
0.8
Jeff Garzik 13 years ago
parent
commit
b8cbbc2c28
  1. 3
      src/wallet.cpp

3
src/wallet.cpp

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

Loading…
Cancel
Save