Skip to content

Commit

Permalink
fix inspent walker res modify true (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
cchanm authored and shangqd committed Dec 16, 2019
1 parent 25a8c32 commit 9e779d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bigbang/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class CInspectDBTxWalker : public storage::CWalletDBTxWalker
{
public:
CInspectDBTxWalker(CWallet* pWalletIn, const set<CDestination>& setDestIn)
: fRes(false), pWallet(pWalletIn), setDest(setDestIn) {}
: fRes(true), pWallet(pWalletIn), setDest(setDestIn) {}
bool Walk(const CWalletTx& wtx) override
{
fRes = pWallet->CompareWithPoolOrTx(wtx, setDest);
Expand Down

0 comments on commit 9e779d0

Please sign in to comment.