-
Notifications
You must be signed in to change notification settings - Fork 9
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
IOS-8050: Apply rounding to the Hedera fee value #850
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Вот тут я вообще не понял:
я изначально добавил
.rounded(blockchain: walletManager.wallet.blockchain, roundingMode: .up)
только дляexchangeRate.nextHBARPerUSD
- так как именно этот компонент привносил избыточную точность, он был чем-то вроде17.9466625137819201082727172
Я округляю его до scale равного Hedera decimal count (это 8) - и получаю
17.94666251
Затем домножаю в 424 строке эту величину на
feeBase
(0.05
в случае простого трансфера) иmaxFeeMultiplier
(1.1
) и ожидаю, что scale результата будет меньше или равен наибольшему scale множителей (то есть 8)В итоге получаю
0.98706643805
со scale равным 11, что естественно приводит к дробному числу воfromAmount
¯_(ツ)_/¯Поэтому пришлось применить округление на финальное значение
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.
Логично, это же просто число, округленное, после последующих операций не гарантируется сохранение оригинального числа знаков после запятой
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.
Так может тогда имеет смысл оставить округление только на последнем этапе, чтобы не терять точность лишний раз?
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.
На последнем это каком? Непосредственно в экспрессе?
Вообще здесь и есть последний этап внутри воллет менеджера - перед отдачей посчитанного fee наружу в
estimateFee
(что и вызывало ошибку в экспрессе)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.
Да я это и имел в виду. Ты пишешь, округлил, потом помножил, потом надо опять округлять. Вот и предложил не округлять на промежуточных этапах, но раз уже так, то ок
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.
Эта логика специфична для Хедеры и может аффектить обычные транзы, а не только экспресс - поэтому округление точно нужно тут
Но в экспрессе по хорошему тоже сделать бы округление перед отправкой запроса (со scale == decimal count), раз у бэка такой строгий контракт - чтобы ситуация как с хедерой не повторилась с другими сетями
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.
ну и это я же писал что пробовал и что не взлетело)
сейчас двойного округления нет