diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index baa56e237..22c4917a2 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -4311,7 +4311,7 @@ Copyright (C) 2009-%i The Bitcoin Core Developers - Copyright (C) 2014-%i The Blackcoin Lore Developers + Copyright (C) 2009-%i The Bitcoin Core Developers diff --git a/src/qt/locale/bitcoin_en_GB.ts b/src/qt/locale/bitcoin_en_GB.ts index 1602d4d43..58b1a5ac7 100644 --- a/src/qt/locale/bitcoin_en_GB.ts +++ b/src/qt/locale/bitcoin_en_GB.ts @@ -3317,7 +3317,7 @@ Copyright (C) 2009-%i The Bitcoin Core Developers - Copyright (C) 2014-%i The Blackcoin Lore Developers + Copyright (C) 2009-%i The Bitcoin Core Developers Error loading wallet.dat: Wallet requires newer version of Bitcoin Core diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index aea4db633..f2676610b 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -3213,7 +3213,7 @@ Copyright (C) 2009-%i The Bitcoin Core Developers - Copyright (C) 20014-%i The Blackcoin Lore Developers + Copyright (C) 2009-%i The Bitcoin Core Developers Error loading wallet.dat: Wallet requires newer version of Bitcoin Core diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index c7a8a79c7..e1b546dc5 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3235,7 +3235,7 @@ std::map 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();