-
Notifications
You must be signed in to change notification settings - Fork 244
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
Bug fix: Multiple send bug fixes #1538
Conversation
moneymanolis
commented
Jan 26, 2022
- Multiple send bug fixes
- Disabling RBF and subtract fee from for Liquid
- Restoring Cypress tests
…id & restoring Cypress tests.
✔️ Deploy Preview for specter-desktop-docs ready! 🔨 Explore the source changes: db9b65d 🔍 Inspect the deploy log: https://app.netlify.com/sites/specter-desktop-docs/deploys/61f3c84f02ae3b00072dfccc 😎 Browse the preview: https://deploy-preview-1538--specter-desktop-docs.netlify.app |
// Switch off RBF and subtract fee for Liquid | ||
function adjustForLiquid() { | ||
if (NETWORK == "Liquid") { | ||
console.log("On Liquid, removing RBF and subtract from features ... ") |
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.
... ?
document.getElementById('subtract_from').style.display = 'block'; | ||
document.getElementById('subtract_from_input').value = i + 1; | ||
} | ||
FeeSelectionComponent.setSubtract(units[i] == 'sat' || units[i] == 'btc' || units[i] == 'lbtc'); |
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.
As far as I remember LBTC has unit btc
or sat
, so it will never be lbtc
Additional refinements will be resolved in further PRs. |