-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Remove unused uid in pricefeed service #3937
Conversation
Bisq frequently (once per minute) queries our price nodes for up-to-date price information. It does so by HTTP GET request. However, it provided a UID via the "User-Agent" HTTP header field. This UID has been a random number which changed everytime Bisq got started up. This UID has never been used. Thus, remove it.
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.
utACK
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.
This is great for privacy 👍
pricenode still has UUID in logs
|
I only focused on the stuff relevant to the networksize metric. I guess we can remove the uid for the getFee stuff as well. However, I will not touch the mobile notification stuff because I do not know how these things work in detail. |
This came up during work on #3916.
Bisq frequently (once per minute) queries our price nodes for up-to-date
price information. It does so by HTTP GET request. However, it provided
a UID via the "User-Agent" HTTP header field. This UID has been a random
number which changed everytime Bisq got started up.
This UID has never been used. Thus, remove it.