|
|
|
@ -155,26 +155,25 @@ CBitcoinAddress GetAccountAddress(string strAccount, bool bForceNew=false)
@@ -155,26 +155,25 @@ CBitcoinAddress GetAccountAddress(string strAccount, bool bForceNew=false)
|
|
|
|
|
CAccount account; |
|
|
|
|
walletdb.ReadAccount(strAccount, account); |
|
|
|
|
|
|
|
|
|
bool bKeyUsed = false; |
|
|
|
|
|
|
|
|
|
if (!bForceNew) { |
|
|
|
|
if (!account.vchPubKey.IsValid()) |
|
|
|
|
bForceNew = true; |
|
|
|
|
else { |
|
|
|
|
// Check if the current key has been used
|
|
|
|
|
if (account.vchPubKey.IsValid()) |
|
|
|
|
{ |
|
|
|
|
CScript scriptPubKey = GetScriptForDestination(account.vchPubKey.GetID()); |
|
|
|
|
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); |
|
|
|
|
it != pwalletMain->mapWallet.end() && account.vchPubKey.IsValid(); |
|
|
|
|
++it) |
|
|
|
|
{ |
|
|
|
|
const CWalletTx& wtx = (*it).second; |
|
|
|
|
BOOST_FOREACH(const CTxOut& txout, wtx.vout) |
|
|
|
|
if (txout.scriptPubKey == scriptPubKey) |
|
|
|
|
bKeyUsed = true; |
|
|
|
|
BOOST_FOREACH(const CTxOut& txout, (*it).second.vout) |
|
|
|
|
if (txout.scriptPubKey == scriptPubKey) { |
|
|
|
|
bForceNew = true; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Generate a new key
|
|
|
|
|
if (!account.vchPubKey.IsValid() || bForceNew || bKeyUsed) |
|
|
|
|
{ |
|
|
|
|
if (bForceNew) { |
|
|
|
|
if (!pwalletMain->GetKeyFromPool(account.vchPubKey)) |
|
|
|
|
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first"); |
|
|
|
|
|
|
|
|
|