-
Notifications
You must be signed in to change notification settings - Fork 570
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
Fix #294 Vesting Stats #474
Conversation
Update README.md - correct spelling of webpack dependency
* Add Chart Clamp To Settings Dropdown * Removed Unused Variable Merging as is and then we'll see about handling the redraw bug in the next sprint.
app/assets/locales/locale-en.json
Outdated
"fees_pending": "Pending fees", | ||
"fees_vested": "Pending vested fees", | ||
"fees_paid": "Fees paid, Lifetime", | ||
"fees_pending": "Fees pending division", |
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.
Not sure what this means, pending what division?
The description uses the word "divided" to describe the affiliate,
registrar, and network fee splits that occur.
Whereas `Pending Vested Fees` are not divided at all.
…On Oct 1, 2017 11:18 AM, "Sigve Kvalsvik" ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In app/assets/locales/locale-en.json
<#474 (comment)>
:
> @@ -136,9 +136,9 @@
"network_percentage": "Network",
"fee_allocation": "Fee Allocation",
"membership": "Membership",
- "fees_paid": "Lifetime fees paid",
- "fees_pending": "Pending fees",
- "fees_vested": "Pending vested fees",
+ "fees_paid": "Fees paid, Lifetime",
+ "fees_pending": "Fees pending division",
Not sure what this means, pending what division?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#474 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ANfZLAV-VPHgKXv8TtKrIcIWEMr13ONHks5sn9d4gaJpZM4PpwDG>
.
|
I'm still confused as to what these two are and how they work. I just watched the openledger account register a new account, and that added to "Pending vested fees", even though the fee for that is only 1.2 BTS so it shouldn't need to vest :/ |
@svk31 they should not have named that data point "vested" so you are seeing the expected behavior. I would presume you saw the value go back to 0 within the hour right? |
I took a stab at this.
Hoping the terminology I added will work. |
Kind of wish now i didn't spend 2 hours wrestling with this on the testnet but I took it seriously. |
@happyconcepts I won't take the payment if it's accepted. It'll still credit to you. I do think the terminology is confusing and needs a solution. Don't lose hope. |
In my understanding lifetime_fees_paid just means the total amount of fees paid by the account in its lifetime, nothing to do with lifetime membership. Pending fees sounds like fees you haven't paid yet but will have to eventually. |
Gentlemen, internet access is situationally limited for me at the moment, precluding me from extended discussions.... but here is the most constructive thing I can mention in order to enlighten you:
My opinion is that you need the decide the tradeoff: On the one hand, this information is not necessary for the end user, and it obviously confusing. And on the other hand, this is a reference client, and this information is necessary for developers to understand how the affiliate logic is being implemented to the chain. If it were me, I would choose to continue displaying these values but I would first de-emphasize them via CSS style and then augment the descriptive information so that the user knows what they are looking at. And I would choose to avoid the use of the word and yes, this bounty would help[ me alleviate my internet access situation so I am motivated for progress on this one. |
Ok; so that explanation makes things a lot clearer. To be honest I don't see the value of even displaying these fields then, since they'll probably only be confusing to users. Also, fees_paid should simply be changed to "Total fees paid" since that's what it is. I will accept a PR with the above text change and removal of the two fees_pending and fees_vested fields. Happy to let you have the bounty for that since you've clearly spent some time digging into this even if the final changes are minor. |
Made the modifications myself and merged here: #575 Like I said above, @happyconcepts should still get the bounty. |
Fix #294 (english language).