diff options
| author | Luke Dashjr <[email protected]> | 2012-07-26 00:48:39 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-08-01 17:49:51 +0000 |
| commit | 814efd6f1fc83afb9ed4bb3c0808ee3bab11d10d (patch) | |
| tree | 782fac39da35e54bce2a9108cdca82f21b489405 /src/wallet.cpp | |
| parent | Merge pull request #1344 from rebroad/AskForTimeFormat (diff) | |
| download | discoin-814efd6f1fc83afb9ed4bb3c0808ee3bab11d10d.tar.xz discoin-814efd6f1fc83afb9ed4bb3c0808ee3bab11d10d.zip | |
Bugfix: Fix a variety of misspellings
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 4d99ce656..dcc170a36 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -758,7 +758,7 @@ void CWallet::ReacceptWalletTransactions() } else { - // Reaccept any txes of ours that aren't already in a block + // Re-accept any txes of ours that aren't already in a block if (!wtx.IsCoinBase()) wtx.AcceptWalletTransaction(txdb, false); } @@ -767,7 +767,7 @@ void CWallet::ReacceptWalletTransactions() { // TODO: optimize this to scan just part of the block chain? if (ScanForWalletTransactions(pindexGenesisBlock)) - fRepeat = true; // Found missing transactions: re-do Reaccept. + fRepeat = true; // Found missing transactions: re-do re-accept. } } } |