diff options
| author | Dimitris Apostolou <[email protected]> | 2018-03-18 16:26:45 +0200 |
|---|---|---|
| committer | Dimitris Apostolou <[email protected]> | 2018-03-21 08:34:44 +0200 |
| commit | 4d9b4256d89d1f7c6b3e4938ab2e89cde296e8e8 (patch) | |
| tree | 1fc1e7662fcaeb8a9503eb80fc4038eee2da5b55 /src/wallet/wallet.cpp | |
| parent | Merge #12710: Append scripts to new test_list array to fix bad assignment (diff) | |
| download | discoin-4d9b4256d89d1f7c6b3e4938ab2e89cde296e8e8.tar.xz discoin-4d9b4256d89d1f7c6b3e4938ab2e89cde296e8e8.zip | |
Fix typos
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index bd5094085..0d2157085 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1269,7 +1269,7 @@ void CWallet::BlockUntilSyncedToCurrentChain() { // chainActive.Tip()... // We could also take cs_wallet here, and call m_last_block_processed // protected by cs_wallet instead of cs_main, but as long as we need - // cs_main here anyway, its easier to just call it cs_main-protected. + // cs_main here anyway, it's easier to just call it cs_main-protected. LOCK(cs_main); const CBlockIndex* initialChainTip = chainActive.Tip(); @@ -4186,8 +4186,8 @@ bool CWalletTx::AcceptToMemoryPool(const CAmount& nAbsurdFee, CValidationState& // We must set fInMempool here - while it will be re-set to true by the // entered-mempool callback, if we did not there would be a race where a // user could call sendmoney in a loop and hit spurious out of funds errors - // because we think that the transaction they just generated's change is - // unavailable as we're not yet aware its in mempool. + // because we think that this newly generated transaction's change is + // unavailable as we're not yet aware that it is in the mempool. bool ret = ::AcceptToMemoryPool(mempool, state, tx, nullptr /* pfMissingInputs */, nullptr /* plTxnReplaced */, false /* bypass_limits */, nAbsurdFee); fInMempool |= ret; |