diff options
author | Matteo Sumberaz <gnappoms@gmail.com> | 2018-06-29 11:30:25 +0200 |
---|---|---|
committer | Matteo Sumberaz <gnappoms@gmail.com> | 2018-07-02 10:10:27 +0200 |
commit | 1336d9cb3b5441904bb214dc7259035aacdcd108 (patch) | |
tree | 044e158140e61c143f5bda3543fb9501847bbb9d /src/wallet/wallet.cpp | |
parent | b330f3fdd56b2dccc106154575af46ebb53e1ad9 (diff) |
Delete double semicolon in wallet.cpp and misc.cpp
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 842516bb0e..c93bef1fc7 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -553,7 +553,7 @@ void CWallet::SyncMetaData(std::pair<TxSpends::iterator, TxSpends::iterator> ran for (TxSpends::iterator it = range.first; it != range.second; ++it) { const CWalletTx* wtx = &mapWallet.at(it->second); if (wtx->nOrderPos < nMinOrderPos) { - nMinOrderPos = wtx->nOrderPos;; + nMinOrderPos = wtx->nOrderPos; copyFrom = wtx; } } |