diff options
| author | Gavin Andresen <[email protected]> | 2011-12-16 18:03:48 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-12-19 13:24:51 -0500 |
| commit | 9e470585b35a84fcb7f6aa41ac0216c117e2a5e1 (patch) | |
| tree | 88ead3af4b648db71bda23131b4b70d5c1af7f6e /src/main.cpp | |
| parent | Fix logic for IsChange() for send-to-self transactions. (diff) | |
| download | discoin-9e470585b35a84fcb7f6aa41ac0216c117e2a5e1.tar.xz discoin-9e470585b35a84fcb7f6aa41ac0216c117e2a5e1.zip | |
Update bitcoin address numbers for latest luke-jr/sipa scheme
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 81dd76fc4..5db708a8c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -902,7 +902,7 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTes { if (IsCoinBase()) return true; // Coinbase transactions have no inputs to fetch. - + for (int i = 0; i < vin.size(); i++) { COutPoint prevout = vin[i].prevout; |