Merge pull request #31 from lateminer/patch-6
Do not exclude stake from balances in listaddressgroupings RPC
This commit is contained in:
@@ -4311,7 +4311,7 @@
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Copyright (C) 2009-%i The Bitcoin Core Developers</source>
|
||||
<translation>Copyright (C) 2014-%i The Blackcoin Lore Developers</translation>
|
||||
<translation>Copyright (C) 2009-%i The Bitcoin Core Developers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+16"/>
|
||||
|
||||
@@ -3317,7 +3317,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2009-%i The Bitcoin Core Developers</source>
|
||||
<translation>Copyright (C) 2014-%i The Blackcoin Lore Developers</translation>
|
||||
<translation>Copyright (C) 2009-%i The Bitcoin Core Developers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading wallet.dat: Wallet requires newer version of Bitcoin Core</source>
|
||||
|
||||
@@ -3213,7 +3213,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2009-%i The Bitcoin Core Developers</source>
|
||||
<translation>Copyright (C) 20014-%i The Blackcoin Lore Developers</translation>
|
||||
<translation>Copyright (C) 2009-%i The Bitcoin Core Developers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error loading wallet.dat: Wallet requires newer version of Bitcoin Core</source>
|
||||
|
||||
@@ -3235,7 +3235,7 @@ std::map<CTxDestination, CAmount> CWallet::GetAddressBalances()
|
||||
if (!CheckFinalTx(*pcoin) || !pcoin->IsTrusted())
|
||||
continue;
|
||||
|
||||
if ((pcoin->IsCoinBase() || pcoin->IsCoinStake()) && pcoin->GetBlocksToMaturity() > 0)
|
||||
if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
|
||||
continue;
|
||||
|
||||
int nDepth = pcoin->GetDepthInMainChain();
|
||||
|
||||
Reference in New Issue
Block a user