diff options
| author | Jeff Garzik <[email protected]> | 2013-07-31 03:35:33 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-07-31 03:35:33 -0700 |
| commit | 8351d55cd3955c95c5e3fe065a456db08cc8a559 (patch) | |
| tree | 2647f444088b18845088a5fac3a6fdabe656eeba /src/script.cpp | |
| parent | Make sure new wallet variables are initialized (diff) | |
| parent | Remove #define loop from util.h (diff) | |
| download | discoin-8351d55cd3955c95c5e3fe065a456db08cc8a559.tar.xz discoin-8351d55cd3955c95c5e3fe065a456db08cc8a559.zip | |
Merge pull request #2866 from gavinandresen/loopdefine
Remove #define loop from util.h
Diffstat (limited to 'src/script.cpp')
| -rw-r--r-- | src/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.cpp b/src/script.cpp index 14fe80e20..5699fbfb6 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1163,7 +1163,7 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsi // Compare CScript::const_iterator pc1 = script1.begin(); CScript::const_iterator pc2 = script2.begin(); - loop + while (true) { if (pc1 == script1.end() && pc2 == script2.end()) { |