You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used mininput=0.01 in clam.conf to ignore outputs smaller than 0.01 CLAM, then sent myself a transaction paying me multiple outputs, some larger than 0.01 and some smaller.
When I listunspent, I only see the larger outputs, but when I getbalance I see the sum of all outputs, not only the larger ones.
It seems the solution is to move the threshold test up a level:
I sent myself 0.1, 0.01, 0.001, 0.0001 in 4 separate transactions, and then sent myself the same 4 amounts but in a single transaction. So the total I received is 0.2222, but only 0.22 of it is at or above the 0.01 threshold.
I check the unspent outputs, and only see the four outputs that I should see:
I used
mininput=0.01
inclam.conf
to ignore outputs smaller than 0.01 CLAM, then sent myself a transaction paying me multiple outputs, some larger than 0.01 and some smaller.When I
listunspent
, I only see the larger outputs, but when Igetbalance
I see the sum of all outputs, not only the larger ones.It seems the solution is to move the threshold test up a level:
The text was updated successfully, but these errors were encountered: