We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In all of the transaction creation function we are using fee instead of feerate, which is suboptimal.
fee
feerate
For ex:
coinswap/src/wallet/direct_send.rs
Lines 76 to 81 in 06a8b8e
Change the input parameter from fee to feerate, and modify the calculations accordingly.
Caveat: We will need to find the exact size of the input of the spending transaction to calculate the right fee form the feerate.
The text was updated successfully, but these errors were encountered:
Taking this up.
Sorry, something went wrong.
spend_from_wallet
claddyy
Successfully merging a pull request may close this issue.
In all of the transaction creation function we are using
fee
instead offeerate
, which is suboptimal.For ex:
coinswap/src/wallet/direct_send.rs
Lines 76 to 81 in 06a8b8e
Change the input parameter from fee to feerate, and modify the calculations accordingly.
Caveat:
We will need to find the exact size of the input of the spending transaction to calculate the right fee form the feerate.
The text was updated successfully, but these errors were encountered: