aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.h
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-08-06 13:02:48 -0400
committerGregory Maxwell <greg@xiph.org>2012-08-23 15:55:50 -0400
commit92735bca313768dbc49789566c47e3a68ecef59a (patch)
treebc5f0fa10286a0a9122296441c92126648e2c6fa /src/wallet.h
parent22dfd7359863217eb8caef75084cfa8fa8e1d8fb (diff)
downloadbitcoin-92735bca313768dbc49789566c47e3a68ecef59a.tar.xz
Add txout address filtering to listunspent.
This applies on top of the coincontrol listaddressgroupings patch and makes finding eligible outputs from the groups returned by listaddressgroupings possible.
Diffstat (limited to 'src/wallet.h')
-rw-r--r--src/wallet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.h b/src/wallet.h
index 5f6a6a4444..f02c1467b5 100644
--- a/src/wallet.h
+++ b/src/wallet.h
@@ -647,7 +647,7 @@ public:
return true;
}
- std::string GetAddressOfTxOut(int n)
+ std::string GetAddressOfTxOut(int n) const
{
CTxDestination addr;
ExtractDestination(vout[n].scriptPubKey, addr);