-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes inaccurate round count in CoinControlDialog (Issue #2068) #2137
Fixes inaccurate round count in CoinControlDialog (Issue #2068) #2137
Conversation
You are fixing it in the wrong place, should be the one in Anyway, I'm not convinced that #2068 is really an issue in the first place, so postponing this till 12.4 for now. |
Yup, you're 100% right... That's what I get for not paying enough attention. Just updated that. I remember in my testing before that I was surprised that there wasn't a function where the second arg was assumed to be 0 if nothing was passed. 12.4 is fine, not a major change by any regard, but good in general as it makes it more accurate. |
Needs rebase after #2149 |
855cfd9
to
964d153
Compare
964d153
to
2209630
Compare
I was having difficulties, but was able to figure it out, I think... Please ended up doing Seems to be correct. Is this how I should have done it @UdjinM6 ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I usually rebase like this:
git checkout develop
git pull
git checkout mybranch
git rebase -i develop
git mergetool
<fix conflicts>
git rebase --contunue
git push MyRepo HEAD -f
Anyway, looks good imo.
ACK
* fixes dashpay#2068 * Revert prior and update in correct location
The CoinControlDialog previously displayed either the actual round count, or the maxRounds set through the options, whichever is lower (used
GetOutputPrivateSendRounds
). However, there is no reason why the CoinControlDialog should not always display the actual round count of an input (usingGetRealOutputPrivateSendRounds
). SinceGetOutputPrivateSendRounds
is defined as:This should not break anything, while making it a little bit better and more accurate. Fixes #2068