diff options
| author | Gavin Andresen <[email protected]> | 2013-07-31 14:06:44 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-07-31 14:06:44 +1000 |
| commit | 050d2e953f23db6d818b9cec6b7dc0e52aa7537c (patch) | |
| tree | 2647f444088b18845088a5fac3a6fdabe656eeba /src/wallet.cpp | |
| parent | Make sure new wallet variables are initialized (diff) | |
| download | discoin-050d2e953f23db6d818b9cec6b7dc0e52aa7537c.tar.xz discoin-050d2e953f23db6d818b9cec6b7dc0e52aa7537c.zip | |
Remove #define loop from util.h
Replace the loop macro with while (true). The #define caused
problems for Qt.
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 0b4c866f8..88b07c9d7 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1194,7 +1194,7 @@ bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, LOCK2(cs_main, cs_wallet); { nFeeRet = nTransactionFee; - loop + while (true) { wtxNew.vin.clear(); wtxNew.vout.clear(); |