Browse Source

Merge pull request #3657

fdbc2b1 If requested, actually treat uncomfirmed change as being uncomfirmed (b6393ce9-d324-4fe1-996b-acf82dbc3d53)
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
ea062655e0
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/wallet.h

2
src/wallet.h

@ -702,7 +702,7 @@ public: @@ -702,7 +702,7 @@ public:
return false;
if (GetDepthInMainChain() >= 1)
return true;
if (!IsFromMe()) // using wtx's cached debit
if (!bSpendZeroConfChange || !IsFromMe()) // using wtx's cached debit
return false;
// If no confirmations but it's from us, we can still

Loading…
Cancel
Save